File size: 348 Bytes
a8e9b84 d0f1641 a8e9b84 6763b1e a8e9b84 94186db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM nikolaik/python-nodejs:python3.10-nodejs19
RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg neofetch \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . /app/
WORKDIR /app/
RUN pip3 install --no-cache-dir -U -r requirements.txt
RUN pip3 install uvicorn fastapi
CMD bash start & python3 server.py
|