This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/Dockerfile

14 lines
240 B
Docker

FROM golang:alpine
RUN apk add git
ENV MODE=production
WORKDIR /go/src/app
COPY . .
RUN go build -o main .
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait ./wait
RUN chmod +x ./wait
CMD ./wait && ./main