Skip to content

Commit c3ac34a

Browse files
authored
Merge pull request Yelp#2455 from JeffAshton/JeffAshton/fix-docker-test-file
Updating the docker test file to work with python 3.6
2 parents fa3b1b2 + 16a464e commit c3ac34a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile-test

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

33
RUN apt-get update && apt-get upgrade -y
4-
RUN apt-get -y install build-essential python-setuptools python2.7 python2.7-dev libssl-dev git tox python-pip
4+
RUN apt-get -y install build-essential python3.6 python3.6-dev python3-pip libssl-dev git
55

66
WORKDIR /home/elastalert
77

88
ADD requirements*.txt ./
9-
RUN pip install -r requirements-dev.txt
9+
RUN pip3 install -r requirements-dev.txt

0 commit comments

Comments
 (0)