6 lines
246 B
Docker
6 lines
246 B
Docker
|
FROM python:3.12-alpine
|
||
|
RUN apk add --no-cache linux-headers g++ build-base \
|
||
|
libressl-dev libxslt-dev libgcrypt-dev musl-dev libffi-dev libxml2 libxslt libc-dev
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
COPY . .
|