Spaces:
Sleeping
Sleeping
File size: 788 Bytes
220e014 bec18ed 220e014 3bceda4 220e014 de2b3a6 220e014 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Use an official Python runtime as a parent image
FROM python:3.12-slim
RUN useradd -m -u 1000 user
# Set the working directory in the container
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
build-essential \
pkg-config \
libhdf5-dev \
&& rm -rf /var/lib/apt/lists/*
COPY --chown=user ./requirements.txt requirements.txt
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Make port 8000 available to the world outside this container
EXPOSE 8000
# Command to run the Uvicorn server
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|