aci-demo: Rework Dockerfiles

Signed-off-by: Chris Crone <christopher.crone@docker.com>
This commit is contained in:
Chris Crone 2021-04-15 14:39:13 +02:00 committed by Guillaume Tardif
parent c0e5fbba99
commit 04bba675d2
2 changed files with 5 additions and 17 deletions
aci/e2e
aci-demo/web
aci_secrets_resources/web

View File

@ -12,24 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# BUILD
FROM ubuntu:latest
# Update and upgrade repo
RUN apt-get update -y -q && apt-get upgrade -y -q
# Install tools we might need
RUN DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y -q curl build-essential ca-certificates git
# Download Go 1.2.2 and install it to /usr/local/go
RUN curl -s https://storage.googleapis.com/golang/go1.2.2.linux-amd64.tar.gz| tar -v -C /usr/local -xz
# Let's people find our Go binaries
ENV PATH $PATH:/usr/local/go/bin
FROM golang:1.16-alpine AS build
COPY dispatcher.go .
RUN go build dispatcher.go
RUN mkdir -p /out && go build -o /out/dispatcher dispatcher.go
FROM alpine AS run
EXPOSE 80
CMD ["/dispatcher"]
COPY static /static/
COPY --from=build /out/dispatcher /dispatcher

View File

@ -18,7 +18,7 @@
FROM golang:1.16-alpine AS build
COPY main.go .
RUN --mount=type=cache,target=/go/pkg/mod \
CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o server main.go
go build -trimpath -ldflags="-s -w" -o server main.go
FROM alpine
RUN apk --no-cache add curl