Commit c4294f9d authored by Peter Leitzen's avatar Peter Leitzen

Merge branch 'update-vendored-dockerfile-templates' into 'master'

Upgrade vendored Dockerfile template to buster

See merge request gitlab-org/gitlab!42169
parents 0a020f7a 56f7ece1
---
title: Upgrade vendored Dockerfile template to buster
merge_request: 42169
author: Takuya Noguchi
type: other
...@@ -110,7 +110,7 @@ Example response (Dockerfile): ...@@ -110,7 +110,7 @@ Example response (Dockerfile):
```json ```json
{ {
"name": "Binary", "name": "Binary",
"content": "# This file is a template, and might need editing before it works on your project.\n# This Dockerfile installs a compiled binary into a bare system.\n# You must either commit your compiled binary into source control (not recommended)\n# or build the binary first as part of a CI/CD pipeline.\n\nFROM buildpack-deps:jessie\n\nWORKDIR /usr/local/bin\n\n# Change `app` to whatever your binary is called\nAdd app .\nCMD [\"./app\"]\n" "content": "# This file is a template, and might need editing before it works on your project.\n# This Dockerfile installs a compiled binary into a bare system.\n# You must either commit your compiled binary into source control (not recommended)\n# or build the binary first as part of a CI/CD pipeline.\n\nFROM buildpack-deps:buster\n\nWORKDIR /usr/local/bin\n\n# Change `app` to whatever your binary is called\nAdd app .\nCMD [\"./app\"]\n"
} }
``` ```
......
...@@ -124,7 +124,7 @@ Example response: ...@@ -124,7 +124,7 @@ Example response:
```json ```json
{ {
"name": "Binary", "name": "Binary",
"content": "# This file is a template, and might need editing before it works on your project.\n# This Dockerfile installs a compiled binary into a bare system.\n# You must either commit your compiled binary into source control (not recommended)\n# or build the binary first as part of a CI/CD pipeline.\n\nFROM buildpack-deps:jessie\n\nWORKDIR /usr/local/bin\n\n# Change `app` to whatever your binary is called\nAdd app .\nCMD [\"./app\"]\n" "content": "# This file is a template, and might need editing before it works on your project.\n# This Dockerfile installs a compiled binary into a bare system.\n# You must either commit your compiled binary into source control (not recommended)\n# or build the binary first as part of a CI/CD pipeline.\n\nFROM buildpack-deps:buster\n\nWORKDIR /usr/local/bin\n\n# Change `app` to whatever your binary is called\nAdd app .\nCMD [\"./app\"]\n"
} }
``` ```
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# You must either commit your compiled binary into source control (not recommended) # You must either commit your compiled binary into source control (not recommended)
# or build the binary first as part of a CI/CD pipeline. # or build the binary first as part of a CI/CD pipeline.
FROM buildpack-deps:jessie FROM buildpack-deps:buster
WORKDIR /usr/local/bin WORKDIR /usr/local/bin
......
...@@ -6,7 +6,7 @@ COPY . . ...@@ -6,7 +6,7 @@ COPY . .
RUN go-wrapper download RUN go-wrapper download
RUN go build -v RUN go build -v
FROM buildpack-deps:jessie FROM buildpack-deps:buster
WORKDIR /usr/local/bin WORKDIR /usr/local/bin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment