Skip to content

Commit

Permalink
dockers
Browse files Browse the repository at this point in the history
  • Loading branch information
gus0k committed Nov 19, 2019
1 parent effb8d3 commit 6ddbc86
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
13 changes: 0 additions & 13 deletions dev/Dockerfile

This file was deleted.

10 changes: 9 additions & 1 deletion dev/Dockerfile_bionic
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
FROM ubuntu:bionic

RUN apt update && apt install --yes python3-pip=9.0.1-2.3~ubuntu1.18.04.1
RUN apt update && apt install --yes python3-pip=9.0.1-2.3~ubuntu1.18.04.1 git


RUN python3 -m pip install pymarket
RUN python3 -m pip install pytest

WORKDIR /home

RUN git clone https://github.com/gus0k/pymarket

WORKDIR /home/pymarket
RUN pytest



8 changes: 7 additions & 1 deletion dev/Dockerfile_xenial
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ FROM ubuntu:xenial

RUN apt-get update && apt-get install -y python3 python3-pip git software-properties-common


RUN add-apt-repository ppa:jonathonf/python-3.6
RUN apt-get update
RUN apt-get -y install python3.6
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2

RUN python3 -m pip install pymarket
RUN python3 -m pip install pymarket pytest

WORKDIR /home
RUN git clone https://github.com/gus0k/pymarket
WORKDIR /home/pymarket

RUN pytest


0 comments on commit 6ddbc86

Please sign in to comment.