c2 / Dockerfile
anthony8p2's picture
Create Dockerfile
d432d84 verified
raw
history blame contribute delete
No virus
353 Bytes
FROM golang:1.21 AS builder
ENV CGO_ENABLED=0
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/y22emc2/Duck2api.git /app
WORKDIR /app
RUN go mod download
RUN go build -ldflags "-s -w" -o /app/duck2api .
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/duck2api /app/duck2api
EXPOSE 8080
CMD ["./duck2api"]