Skip to content

Commit

Permalink
update dockerfile so we have the adequated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Asone committed Jul 30, 2018
1 parent b5ef7dd commit 5e07676
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion _provisioning/daemon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@ LABEL VERSION=1


RUN apk update && apk upgrade && \
apk add --no-cache git python
apk add --no-cache git python python-dev python3 python3-dev \
linux-headers build-base bash git ca-certificates && \
python3 -m ensurepip && \
rm -r /usr/lib/python*/ensurepip && \
pip3 install --upgrade pip setuptools && \
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi

RUN git clone https://framagit.org/parlement-ouvert/tricoteuses-daemon.git

WORKDIR tricoteuses-daemon

RUN pip install requests

0 comments on commit 5e07676

Please sign in to comment.