mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-04-15 14:26:33 -04:00
6 lines
115 B
Docker
6 lines
115 B
Docker
FROM python
|
|
RUN pip install redis
|
|
COPY ./worker.py /worker.py
|
|
COPY ./rediswq.py /rediswq.py
|
|
|
|
CMD python worker.py
|