Add Dockerfile

master
Nikola Forró 6 years ago
parent e0c978b750
commit c0599c839d

@ -0,0 +1,11 @@
FROM python:alpine
WORKDIR /bot
COPY . .
RUN touch settings.cfg
RUN pip install --no-cache-dir --requirement requirements.txt
USER nobody:nogroup
ENTRYPOINT ["python", "bot.py"]
Loading…
Cancel
Save