11 lines
143 B
Docker
11 lines
143 B
Docker
FROM python:3.8
|
|
|
|
RUN apt-get update && apt-get install -y\
|
|
rsync \
|
|
openssh-client \
|
|
zip
|
|
|
|
RUN pip install pipenv
|
|
|
|
CMD ["/bin/bash"]
|