Skip to content
Snippets Groups Projects
Commit f6feeb20 authored by Matthieu Boileau's avatar Matthieu Boileau
Browse files

Update Dockerfile-pythran

parent c0b28ead
No related merge requests found
......@@ -9,10 +9,10 @@ RUN apt-get update --fix-missing && \
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip install --no-cache-dir virtualenv
RUN pip install --no-cache-dir --upgrade pip
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir virtualenv
COPY requirements.txt /tmp/
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN useradd -m -s /bin/bash euler
ENV HOME /home/euler
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment