oraculo_api / Dockerfile
Diiegoal's picture
Actualizo la app
d623240
Raw
History Blame Contribute Delete
670 Bytes
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
ORACULO_ENVIRONMENT=staging \
ORACULO_DOCS_ENABLED=true
RUN apt-get update \
&& apt-get install -y --no-install-recommends libgomp1 \
&& rm -rf /var/lib/apt/lists/*
RUN useradd --create-home --uid 1000 user
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --upgrade pip \
&& pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
RUN mkdir -p /data \
&& chown -R user:user /app /data
USER user
EXPOSE 7860
CMD ["sh", "-c", "alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 7860"]