This repository has been archived on 2024-03-25. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
v8-imgen/Dockerfile
2019-06-25 23:26:27 +05:30

13 lines
222 B
Docker

FROM golang:1.12
ENV GO111MODULE=on
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o imagegen-server github.com/aerodiscord/imagegen/server
EXPOSE 3001
ENTRYPOINT ["/app/imagegen-server"]