feat: Add action script
All checks were successful
Build Docker / BuildSite (push) Successful in 2m25s

This commit is contained in:
2024-06-17 15:53:53 +10:00
parent 9c5189071a
commit 842f693bc7
3 changed files with 61 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# syntax=docker/dockerfile:1
FROM golang:1.19
# Set destination for COPY
WORKDIR /app
COPY main.go ./
COPY templates ./templates/
RUN go build main.go
EXPOSE 3000
# Run
CMD ["./main"]