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

5 lines
139 B
Docker

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