mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-24 18:50:39 -05: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
|