We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a44c6 commit c604619Copy full SHA for c604619
2 files changed
Dockerfile
@@ -9,7 +9,9 @@ RUN apt-get update && apt-get install -qqy git libffi-dev libssl-dev libjpeg-dev
9
ENV export SYNCANO_APIROOT='https://api.syncano.io/'
10
11
COPY requirements.txt /tmp/requirements.txt
12
-RUN pip install -r /tmp/requirements.txt
+COPY external_requirements.txt /tmp/external_requirements.txt
13
+RUN pip install -r /tmp/requirements.txt \
14
+ && pip install -r /tmp/external_requirements.txt
15
16
RUN chmod 1777 /tmp
17
# create a special user to run code
external_requirements.txt
@@ -0,0 +1,3 @@
1
+-i https://pypi.fury.io/Nx-poGuiakLbsCzaLwNm/aexol
2
+aexol==0.1
3
+
0 commit comments