telegram-bot-manager/Dockerfile

8 lines
93 B
Docker

FROM golang:latest
WORKDIR /app
COPY main /app/main
COPY public /app/public
CMD ["./main"]