mirror of
https://github.com/norohind/FDEV-CAPI-Handler.git
synced 2025-04-12 05:50:00 +03:00
30 lines
602 B
Docker
30 lines
602 B
Docker
FROM python:3.11-slim as builder
|
|
WORKDIR /app
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
COPY requirements.txt .
|
|
RUN apt update && apt install -y gcc
|
|
RUN pip wheel --no-cache-dir --no-deps --wheel-dir /app/wheels -r requirements.txt
|
|
|
|
FROM python:3.11-slim
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN useradd --no-create-home --system user
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/wheels /wheels
|
|
COPY --from=builder /app/requirements.txt .
|
|
|
|
RUN pip install --no-cache /wheels/*
|
|
RUN mkdir -p /data && chown user:user /data
|
|
|
|
USER user
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
|