mau_mau_bot/Dockerfile
2020-08-05 00:59:57 +00:00

12 lines
261 B
Docker

FROM python:alpine
RUN apk add --no-cache gettext
WORKDIR /app/
COPY . .
RUN cd locales && find . -maxdepth 2 -type d -name 'LC_MESSAGES' -exec ash -c 'msgfmt {}/unobot.po -o {}/unobot.mo' \;
RUN pip install -r requirements.txt
ENTRYPOINT python3 ./bot.py