6 lines
123 B
Docker
6 lines
123 B
Docker
FROM python:3.6-slim
|
|
|
|
RUN apt-get update -y && apt-get install -y git
|
|
RUN pip3 install virtualenv
|
|
|
|
ENTRYPOINT ["/bin/bash"] |