Skip to content

Commit 78a3bff

Browse files
authored
Merge pull request #9 from DenverM80/python3_docker_4.0
Docker container to run Python3
2 parents c2c4f26 + c9d3f68 commit 78a3bff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docker/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
FROM ubuntu:latest
22

33
# Set the locale
4-
RUN locale-gen en_US.UTF-8
54
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
65

76
# Combine all apt-get install commands or Docker will attempt to use cache
87
RUN apt-get update && apt-get install -y \
98
git \
10-
python \
11-
python-dev \
9+
python3 \
10+
python3-dev \
1211
vim
1312

1413
ADD run_tests.sh /opt/

0 commit comments

Comments
 (0)