mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 18:00:26 +00:00
6 lines
104 B
Docker
6 lines
104 B
Docker
FROM python
|
|
RUN pip install redis
|
|
RUN pip install requests
|
|
COPY worker.py /
|
|
CMD ["python", "worker.py"]
|