bot-base/Dockerfile

10 lines
133 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 \
openssh-client
RUN pip install pipenv
CMD ["/bin/bash"]