picRan/Dockerfile

19 lines
190 B
Text
Raw Normal View History

2024-08-08 11:12:57 +05:00
FROM golang:1.22-alpine
WORKDIR /app
2024-12-13 13:00:28 +05:00
COPY ./main.html /app/main.html
COPY ./static /app/static
2024-08-08 11:12:57 +05:00
VOLUME /app/images
EXPOSE 3666
COPY main.go ./
RUN go build main.go
CMD ["/app/main"]