videoupload / Dockerfile
Akane710's picture
Update Dockerfile
c4abfcc verified
raw
history blame
932 Bytes
ARG PYTHON_VERSION=3.12.1
FROM python:${PYTHON_VERSION}-slim AS base
RUN apt-get update && \
apt-get install -y pipenv && \
apt-get install -y \
fontconfig \
fonts-dejavu \
fonts-dejavu-core \
fonts-dejavu-extra \
fonts-liberation \
fonts-noto \
git && \
rm -rf /var/lib/apt/lists/*
ENV PORT=7860
ENV PIPENV_VENV_IN_PROJECT=1
WORKDIR /app
# COPY requirements.txt .
# RUN pipenv install --dev --ignore-pipfile
COPY . .
EXPOSE 7860
RUN pipenv run pip install EnkaNetwork.py fastapi asyncio uvicorn requests cloudinary
RUN pipenv run pip install git+https://github.com/Akane7101/enkacard
RUN pipenv run pip install git+https://github.com/Akane7101/StarRailCard
RUN pipenv run pip install git+https://github.com/Akane7101/EnkaNetwork.py
CMD [ "pipenv", "run", "python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "8", "--timeout-keep-alive", "600" ]