mau_mau_bot/Dockerfile
2020-12-23 17:05:36 +01:00

16 lines
312 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
VOLUME /app/data
ENV UNO_DB /app/data/uno.sqlite3
ENTRYPOINT python3 ./bot.py