Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pypi-mirror/bandersnatch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:jessie
FROM debian:stretch

MAINTAINER Jan Losinski <losinski@wh2.tu-dresden.de>

RUN apt-get update && \
apt-get -y install --no-install-recommends \
virtualenv \
python-dev \
python3.5-dev \
ca-certificates \
python-pip \
&& \
Expand All @@ -17,7 +17,7 @@ RUN groupadd user && \

WORKDIR /home/user

RUN su user -c "virtualenv ./bandersnatch-env && \
RUN su user -c "virtualenv --python=python3.5 ./bandersnatch-env && \
. ./bandersnatch-env/bin/activate && \
pip install -r https://bitbucket.org/pypa/bandersnatch/raw/stable/requirements.txt"

Expand Down