add Dockerfile
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
|||||||
|
FROM golang:alpine AS builder
|
||||||
|
WORKDIR /build
|
||||||
|
ADD go.mod .
|
||||||
|
COPY . .
|
||||||
|
RUN go build
|
||||||
|
FROM alpine
|
||||||
|
WORKDIR /build
|
||||||
|
RUN apk add --no-cache tzdata
|
||||||
|
COPY --from=builder /build/mini-beieli-web /build/mini-beieli-web
|
||||||
|
COPY snippets snippets
|
||||||
|
COPY templates templates
|
||||||
|
COPY static static
|
||||||
|
CMD ["./mini-beieli-web"]
|
||||||
|
EXPOSE 4000
|
||||||
Reference in New Issue
Block a user