Crisp_Telegram_bot/Dockerfile
Lulzette 53061f1fd2
All checks were successful
continuous-integration/drone/push Build is passing
Dockerfile linted
2021-11-12 19:32:35 +03:00

7 lines
139 B
Docker

FROM golang:1.17-alpine
COPY . /app
WORKDIR /app
RUN go get ; CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
CMD ["./Crisp_Telegram_bot"]