GetMerlin2Api / Dockerfile
isididiidid's picture
Create Dockerfile
4f4b9b0 verified
raw
history blame contribute delete
255 Bytes
FROM golang:1.23-bullseye
WORKDIR /app
ENV UUID="97721503-a99b-446c-b676-79aadb728252"
RUN mkdir -p /.cache && \
chmod -R 777 /.cache
COPY api/ ./api/
COPY go.mod go.sum ./
RUN go mod download
RUN uname -a
EXPOSE 7860
CMD ["go", "run", "api/chat.go"]