du2a / Dockerfile
ykl45's picture
Create Dockerfile
d5b3d27 verified
raw
history blame contribute delete
No virus
263 Bytes
FROM golang:1.21
RUN apt update && apt install git && git clone https://github.com/aurora-develop/Duck2api.git /app
WORKDIR /app
RUN go mod download
EXPOSE 7860
ENV SERVER_HOST=0.0.0.0
ENV PREFIX=/hf
ENV SERVER_PORT=7860
RUN go build -o main .
CMD ["/app/main"]