File size: 222 Bytes
a582bb1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM golang:1.21 
RUN apt update && apt install git && 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"]