12345678910111213141516171819 |
- FROM python:3.10-bullseye
- WORKDIR /fastapi
- RUN python -m venv /opt/venv
- ENV PATH="/opt/venv/bin:$PATH"
- RUN apt-get update; apt-get install libuv1 -y
- RUN pip3 install cython==0.29.33
- COPY requirements-socketify.txt ./
- RUN pip3 install -r requirements-socketify.txt
- COPY . ./
- EXPOSE 8080
- CMD python ./app-socketify-asgi.py
|