rawdataapi / Dockerfile
triflix's picture
Update Dockerfile
7642dcc verified
raw
history blame
483 Bytes
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1
ENV TMP_DIR=/tmp
WORKDIR /app
COPY requirements.txt /app/
RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
&& pip install --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt \
&& apt-get purge -y --auto-remove build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY . /app
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "1"]