Upgraded Dockerfile

This commit is contained in:
Fabio Manganiello 2023-07-24 10:37:51 +02:00
parent 91cd08cdff
commit 1586484e84
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 14 additions and 15 deletions

View File

@ -2,21 +2,20 @@
# to generate your custom Dockerfile.
FROM python:alpine3.11
RUN mkdir /app
COPY . /app
WORKDIR /app
RUN apk add --update --no-cache --virtual build-base \
&& apk add --update --no-cache libffi-dev \
&& apk add --update --no-cache zlib-dev \
&& apk add --update --no-cache libjpeg-turbo-dev \
&& pip install -r requirements.txt \
&& apk del build-base \
&& apk del libffi-dev \
&& apk del libjpeg-turbo-dev \
&& apk del zlib-dev
FROM python3.11:alpine
RUN mkdir -p /install /app
COPY . /install
RUN cd /install
RUN apk add --update --no-cache redis
RUN apk add --update --no-cache --virtual build-base g++ rust
RUN pip install -U pip
RUN pip install .
RUN apk del build-base g++ rust
RUN cd /app && python setup.py build install
CMD python -m platypush
EXPOSE 8008
VOLUME /app/config
VOLUME /app/workdir
CMD python -m platypush --start-redis --config-file /app/config/config.yaml --workdir /app/workdir