We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db0f5c commit f2f0b43Copy full SHA for f2f0b43
Dockerfile
@@ -0,0 +1,17 @@
1
+FROM python:2.7-alpine
2
+
3
+RUN apk update
4
+RUN apk add git build-base
5
+RUN apk add linux-headers libffi-dev openssl-dev
6
7
+WORKDIR /app
8
9
+COPY requirements.txt requirements.txt
10
11
+RUN pip install -r requirements.txt
12
13
+COPY . .
14
15
+EXPOSE 8080
16
17
+CMD python pywb-webrecorder.py
requirements.txt
@@ -1,4 +1,4 @@
#git+git://github.com/ikreymer/pywb.git@develop#egg=pywb-0.8.3
pywb==0.9.0
git+git://github.com/ikreymer/warcprox.git@dev.putmeta
-uwsgi==2.0.6
+uwsgi==2.0.13.1
0 commit comments