-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (34 loc) · 1.14 KB
/
Dockerfile
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
35
36
37
38
39
40
41
42
FROM python:3.12-slim
# tell the host we are running on port 8000
# note: we intentionally run on a port >= 1024 here because lower ports needed special treatment
EXPOSE 8000
# keep Python from generating .pyc files
# note: those files won't be needed in a container where a process is run only once.
ENV PYTHONDONTWRITEBYTECODE=1
# turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1
# Install Common Dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg \
libsm6 \
libxext6
# install pip requirements
WORKDIR /tmp
RUN pip install poetry
COPY ./pyproject.toml ./poetry.lock* /tmp/
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# set workdir and copy app to image
WORKDIR /app
COPY . /app
# define the entry point
ENTRYPOINT uvicorn main:app \
--host="0.0.0.0" \
--port=8000 \
--log-level warning \
--no-proxy-headers \
--no-server-header \
--no-date-header \
--timeout-keep-alive 120 \
--timeout-graceful-shutdown 120