-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from interline-io/test-using-python3
upgrade container & tests to Python3
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ LABEL maintainer="Ian Rees <[email protected]>,Drew Dara-Abrams <[email protected] | |
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update -y && apt-get install \ | ||
python \ | ||
python-pip \ | ||
python3 \ | ||
python3-pip \ | ||
pypy-setuptools \ | ||
curl \ | ||
osmosis \ | ||
|
@@ -23,8 +23,8 @@ RUN /var/lib/dpkg/info/ca-certificates-java.postinst configure | |
|
||
WORKDIR /app | ||
COPY . /app | ||
RUN python setup.py test | ||
RUN pip install . | ||
RUN python3 setup.py test | ||
RUN pip3 install . | ||
|
||
COPY planetutils.sh /scripts/planetutils.sh | ||
|
||
|