Skip to content

Commit

Permalink
Updating the docker test file to work with python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffAshton committed Sep 12, 2019
1 parent e82ab25 commit 16a464e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-test
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ubuntu:latest

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

WORKDIR /home/elastalert

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

0 comments on commit 16a464e

Please sign in to comment.