first commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM golang:1.21.6
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY *.go ./
|
||||
COPY *.mod ./
|
||||
COPY *.sum ./
|
||||
COPY lib ./lib
|
||||
COPY public ./public
|
||||
COPY routes ./routes
|
||||
COPY templates ./templates
|
||||
|
||||
RUN go build .
|
||||
|
||||
ENTRYPOINT ["/app/security"]
|
Reference in New Issue
Block a user