go-webserver-template/Dockerfile
Nathan Woodburn 842f693bc7
All checks were successful
Build Docker / BuildSite (push) Successful in 2m25s
feat: Add action script
2024-06-17 15:53:53 +10:00

13 lines
186 B
Docker

# 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"]