bot-base/Dockerfile

11 lines
143 B
Docker
Raw Normal View History

2020-04-27 08:46:06 +02:00
FROM python:3.8
RUN apt-get update && apt-get install -y\
rsync \
2020-04-28 00:42:13 +02:00
openssh-client \
zip
2020-04-27 08:46:06 +02:00
RUN pip install pipenv
CMD ["/bin/bash"]