gwd-posts-bot/Dockerfile
Hipstercat 01914e0f5a
All checks were successful
continuous-integration/drone/push Build is passing
build
2021-11-17 12:44:54 +01:00

5 lines
144 B
Docker

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