-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
25 lines (18 loc) · 1.15 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM bitnami/minideb-runtimes:jessie
# Install required system packages and dependencies
RUN install_packages build-essential ca-certificates curl git libbz2-1.0 libc6 libncurses5 libreadline6 libsqlite3-0 libssl1.0.0 libtinfo5 pkg-config unzip wget zlib1g
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.6.3-0-linux-x64-debian-8.tar.gz && \
echo "efbf832408cf62b6a2fb4c44010252cfe374528f22bc2a7d2b6240512a77322b /tmp/bitnami/pkg/cache/python-3.6.3-0-linux-x64-debian-8.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/python-3.6.3-0-linux-x64-debian-8.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/python-3.6.3-0-linux-x64-debian-8.tar.gz
ENV BITNAMI_APP_NAME="python-scrapy" \
BITNAMI_IMAGE_VERSION="3.6.3-r0" \
PATH="/opt/bitnami/python/bin:$PATH"
RUN curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py
RUN python ./get-pip.py
RUN pip install bottle==0.12.13 cherrypy==8.9.1 wsgi-request-logger prometheus_client
RUN pip install scrapy==1.7.3
WORKDIR /
ADD kubeless.py .
USER 1000
CMD ["python", "/kubeless.py"]