0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 05:02:58 -05:00
safetwitch-backend/Dockerfile
dragongoose e73f32a0c0 Update 'Dockerfile'
Podman support
2023-06-07 21:21:23 +00:00

19 lines
No EOL
360 B
Docker

FROM docker.io/golang:1.20.3 as builder
# Create and change to the app directory.
WORKDIR /app
COPY go.* ./
RUN go mod download
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -v -o server
FROM docker.io/alpine:3
RUN apk add --no-cache ca-certificates
COPY --from=builder /app/server /server
ENV PORT=8080
EXPOSE 8080
ENTRYPOINT ["/server"]