11 lines
241 B
Docker
11 lines
241 B
Docker
FROM registry.bstein.dev/bstein/ariadne-base:py312
|
|
|
|
USER root
|
|
WORKDIR /app
|
|
|
|
COPY requirements-dev.txt /app/requirements-dev.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements-dev.txt && \
|
|
chown -R ariadne:ariadne /app
|
|
|
|
USER ariadne
|