first commit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user