gwd-posts-bot/Dockerfile
Hipstercat ef73f5958f
Some checks failed
continuous-integration/drone/push Build is failing
build
2021-11-17 12:44:17 +01:00

5 lines
144 B
Docker

FROM python:3.9-slim
WORKDIR /app
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . .
ENTRYPOINT [ "python", "-u", "/app/main.py" ]