Moved or removed EXPOSE in Dockerfiles.

This commit is contained in:
Jeromy Streets 2019-01-04 09:05:39 -08:00
parent f76f7f8f76
commit a55be22716
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,8 @@
################################################################################
## GO BUILDER
################################################################################
FROM golang:1.11.3 as builder
EXPOSE 8080
ENV VERSION 1.5.1
ENV BUILD_DIR /build
@ -14,7 +16,12 @@ COPY . .
RUN go test -cover ./...
RUN CGO_ENABLED=0 go build -a -tags netgo -installsuffix netgo -ldflags "-X github.com/halverneus/static-file-server/cli/version.version=${VERSION}" -o /serve /build/bin/serve
################################################################################
## DEPLOYMENT CONTAINER
################################################################################
FROM scratch
EXPOSE 8080
COPY --from=builder /serve /
ENTRYPOINT ["/serve"]
CMD []

View File

@ -1,6 +1,5 @@
FROM golang:1.11.3 as builder
EXPOSE 8080
ENV VERSION 1.5.1
ENV BUILD_DIR /build