Browse Source

a

master
Andrey Kovalev 2 years ago
parent
commit
b9455b71a5
Signed by: Russia9
GPG Key ID: EC3AA65373CA51DC
  1. 23
      Dockerfile

23
Dockerfile

@ -1,13 +1,24 @@
FROM golang:1.18 # Build container
FROM golang:1.18-bullseye AS build
# Set app workdir # Set build workdir
WORKDIR /go/src/app WORKDIR /app
# Copy application sources # Copy app sources
COPY . . COPY . .
# Build app # Build app
RUN go build -o app . RUN go build -o bin .
# ---
# Production container
FROM debian:bullseye-slim
# Set app workdir
WORKDIR /app
# Copy binary
COPY --from=build /app/bin .
# Run app # Run app
CMD ["./app"] CMD ["./bin"]

Loading…
Cancel
Save