generated from nathanwoodburn/go-webserver-template
Nathan Woodburn
b909a5371f
All checks were successful
Build Docker / BuildSite (push) Successful in 1m21s
20 lines
308 B
Docker
20 lines
308 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM golang:1.21
|
|
|
|
# Set destination for COPY
|
|
WORKDIR /app
|
|
|
|
# Install knot-dnsutils
|
|
RUN apt-get update && apt-get install -y knot-dnsutils
|
|
|
|
COPY main.go ./
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
COPY templates ./templates/
|
|
RUN go get
|
|
RUN go build main.go
|
|
EXPOSE 3000
|
|
|
|
# Run
|
|
CMD ["./main"]
|