tebakaja's picture
update: add docker and actions config
0503b31
raw
history blame
158 Bytes
FROM golang:1.20
LABEL creator="qywok"
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o main
EXPOSE 7860
CMD ["./main"]