abyss/Dockerfile

15 lines
171 B
Docker
Raw Normal View History

2024-08-19 15:50:17 -03:00
FROM golang:1.23
WORKDIR /app
# COPY go.mod go.sum ./
COPY go.mod ./
RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /abyss
CMD ["/abyss"]