You've already forked microservices
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:
@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o backend .
|
||||
|
||||
FROM scratch
|
||||
COPY --from=backend /go/src/app/backend /backend
|
||||
EXPOSE 8080
|
||||
CMD ["/backend"]
|
||||
|
@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o cache .
|
||||
|
||||
FROM scratch
|
||||
COPY --from=cache /go/src/app/cache /cache
|
||||
EXPOSE 8080
|
||||
CMD ["/cache"]
|
||||
|
@@ -8,5 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o database .
|
||||
|
||||
FROM scratch
|
||||
COPY --from=database /go/src/app/database /database
|
||||
EXPOSE 8080
|
||||
CMD ["/database"]
|
||||
|
Reference in New Issue
Block a user