Dockerize

This commit is contained in:
Christoffer Müller Madsen 2023-11-09 20:58:53 +01:00
parent 6f7b3e373f
commit 6cff82233e
1 changed files with 17 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
# syntax=docker/dockerfile:1
FROM golang:1.21
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
# TODO: this can be improved to be dynamically loaded
# Also, Dockerfile COPY seems horrible for copying multiple folders. Why?
COPY css ./css
COPY images ./images
COPY templates ./templates
COPY posts ./posts
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /takunomi-blog
CMD ["/takunomi-blog", "ext"]