mau_mau_bot/Dockerfile

13 lines
261 B
Docker
Raw Normal View History

2020-08-03 18:08:59 +08:00
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