We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a6ec8 commit 51f7193Copy full SHA for 51f7193
environment_setup/Dockerfile
@@ -8,10 +8,10 @@ LABEL org.label-schema.vendor = "Microsoft" \
8
9
COPY environment_setup/requirements.txt /setup/
10
11
+RUN apt-get update && apt-get install gcc -y && pip install --upgrade -r /setup/requirements.txt
12
+
13
COPY environment_setup/python.sh /usr/local/sbin/python.sh
14
RUN rm /usr/local/bin/python && ln -s /usr/local/sbin/python.sh /usr/local/bin/python
15
-
-RUN apt-get update && apt-get install gcc -y && pip install --upgrade -r /setup/requirements.txt
16
17
CMD ["python"]
0 commit comments