ga2-bddbb6 / Dockerfile
abdullahmak's picture
noice
2e35f9b
Raw
History Blame Contribute Delete
308 Bytes
FROM python:3.11-slim
RUN useradd -m -u 1000 user
WORKDIR /app
COPY --chown=user:user . .
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
ENV APP_PORT=7424
EXPOSE 7424
USER user
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7424"]