1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-08-24 20:08:55 +02:00

Remove unnecessary port

This commit is contained in:
ebosas
2021-10-11 09:08:53 +03:00
parent b3f3683143
commit 08a42be202
3 changed files with 0 additions and 3 deletions

View File

@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o backend .
FROM scratch FROM scratch
COPY --from=backend /go/src/app/backend /backend COPY --from=backend /go/src/app/backend /backend
EXPOSE 8080
CMD ["/backend"] CMD ["/backend"]

View File

@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o cache .
FROM scratch FROM scratch
COPY --from=cache /go/src/app/cache /cache COPY --from=cache /go/src/app/cache /cache
EXPOSE 8080
CMD ["/cache"] CMD ["/cache"]

View File

@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o database .
FROM scratch FROM scratch
COPY --from=database /go/src/app/database /database COPY --from=database /go/src/app/database /database
EXPOSE 8080
CMD ["/database"] CMD ["/database"]