mirror of
https://github.com/KevinMidboe/planetposen-mail.git
synced 2025-10-29 09:40:32 +00:00
Dockerfile for running api in container
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
# Build the project
|
||||
FROM golang:1.19 as builder
|
||||
|
||||
WORKDIR /go/src/github.com/kevinmidboe/planetposen-mail
|
||||
ADD . .
|
||||
|
||||
RUN make build
|
||||
# RUN make test
|
||||
|
||||
# Create production image for application with needed files
|
||||
FROM golang:1.19-alpine
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
RUN apk add --no-cache ca-certificates
|
||||
|
||||
COPY --from=builder /go/src/github.com/kevinmidboe/planetposen-mail .
|
||||
|
||||
CMD ["./main"]
|
||||
Reference in New Issue
Block a user