duck / Dockerfile
nump's picture
Upload Dockerfile
24824bf verified
raw
history blame
236 Bytes
FROM golang:1.21
RUN apt update
RUN apt install git
RUN git clone https://github.com/BlackNum/Duck2api.git /app
WORKDIR /app
RUN go mod download
EXPOSE 7860
ENV SERVER_HOST=0.0.0.0
RUN go build -o main .
CMD ["/app/main"]