mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-08-07 22:13:12 -04:00
Update Dockerfile
This commit is contained in:
parent
777efb5745
commit
5390772be8
1 changed files with 6 additions and 1 deletions
|
@ -7,7 +7,12 @@ WORKDIR /app
|
||||||
COPY ./requirements.txt /app
|
COPY ./requirements.txt /app
|
||||||
|
|
||||||
# Build Dependencies
|
# Build Dependencies
|
||||||
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++
|
RUN apk update \
|
||||||
|
&& apk add --virtual build-deps gcc python3-dev musl-dev \
|
||||||
|
&& apk --no-cache add musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++ \
|
||||||
|
&& apk add jpeg-dev zlib-dev libjpeg \
|
||||||
|
&& pip install Pillow \
|
||||||
|
&& apk del build-deps
|
||||||
|
|
||||||
# Python Dependencies
|
# Python Dependencies
|
||||||
RUN pip install --no-cache-dir --prefix=/install gunicorn
|
RUN pip install --no-cache-dir --prefix=/install gunicorn
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue