docker/python/Dockerfile
2017-06-22 10:28:55 +08:00

19 lines
366 B
Docker
Executable File

# Ubuntu+python3
#
# Authoer: kennylee26
FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:xenial
MAINTAINER kennylee26 <kennylee26@gmail.com>
RUN \
apt-get update && \
apt-get install -y python3 python-dev python-pip python-virtualenv && \
rm -rf /var/lib/apt/lists/*
# Define working directory.
WORKDIR /data
# Define default command.
CMD ["bash"]