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 c8eadd6 commit 3019c74Copy full SHA for 3019c74
Dockerfile
@@ -1,10 +1,11 @@
1
# it's offical so i'm using it + alpine so damn small
2
-FROM python:2.7.15-alpine3.8
+FROM python:2.7.15-alpine3.9
3
4
# copy the codebase
5
COPY . /worker
6
7
-# install required packages
+# install required packages - requires build-base due to psutil GCC complier requirements
8
+RUN apk add --no-cache build-base python2-dev linux-headers
9
RUN pip install -r /worker/requirements.txt
10
11
#set python to be unbuffered
0 commit comments