websucker-pip/mongo/Dockerfile
2023-04-07 09:18:18 +02:00

8 lines
155 B
Docker

FROM python:3.9
RUN mkdir /app
COPY requirements.txt /app
RUN pip install -r /app/requirements.txt
COPY *.py /app
WORKDIR /app
ENTRYPOINT ["rq", "worker"]