first commit

This commit is contained in:
ngn
2023-12-09 19:25:38 +03:00
commit 30574d4aa2
19 changed files with 886 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM golang:1.21.4
WORKDIR /app
COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY routes ./routes
COPY public ./public
COPY templates ./templates
RUN go build .
ENTRYPOINT ["/app/website"]