Skip to content

Commit 35243a0

Browse files
authored
Merge pull request #10 from DenverM80/python3_docker
Create Docker container with python3
2 parents 9360dc9 + 7dfa6fa commit 35243a0

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)