websucker-pip/Dockerfile

15 lines
441 B
Docker
Raw Normal View History

2020-05-10 09:48:17 +00:00
FROM python:3.8.0-alpine
RUN apk add --update --no-cache git curl curl-dev vim py3-lxml gcc make libxml2-dev libxslt-dev libc-dev
RUN addgroup -S appgroup -g 1000 && \
adduser -u 1000 -S appuser -G appgroup
2020-05-11 14:43:39 +00:00
RUN mkdir /app
2020-05-10 09:48:17 +00:00
ADD requirements.txt /
RUN CASS_DRIVER_BUILD_CONCURRENCY=4 pip install -r /requirements.txt
RUN pip install https://git.kemt.fei.tuke.sk/dano/websucker-pip/archive/master.zip
2020-05-11 14:43:39 +00:00
WORKDIR /app
2020-05-10 09:48:17 +00:00
ENTRYPOINT ["websuck"]