mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-18 12:29:18 +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"]
|