first commit

This commit is contained in:
ngn
2024-01-17 20:06:26 +03:00
commit d3e04cd8c1
18 changed files with 1087 additions and 0 deletions

14
Dockerfile Normal file
View File

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