Embedding / Dockerfile
Mbonea's picture
sample
2f65bcc
raw
history blame contribute delete
No virus
807 Bytes
# Builder stage
FROM python:3.10.0 as builder
RUN useradd -ms /bin/bash admin
WORKDIR /srv
RUN chown -R admin:admin /srv
RUN chmod 755 /srv
RUN apt-get update && \
apt-get install -y --no-install-recommends \
aria2 ffmpeg libgl1-mesa-dev \
libgles2-mesa-dev \
libglu1-mesa-dev \
build-essential \
cmake \
freeglut3-dev \
libglfw3-dev \
libglew-dev \
libsdl2-dev \
libjpeg-dev \
libpng-dev \
libfreetype6-dev \
&& rm -rf /var/lib/apt/lists/*
#copy requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
USER admin
COPY --chown=admin . /srv
# Command to run the application
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 --workers 1
# Expose the server port
EXPOSE 7860