fastwsgi-asgi.dockerfile 199 B

12345678910111213
  1. FROM python:3.11-bullseye
  2. WORKDIR /usr/src/app
  3. COPY requirements.txt ./
  4. RUN pip3 install -U pip
  5. RUN pip3 install --no-cache-dir -r requirements.txt
  6. COPY . .
  7. EXPOSE 3000
  8. CMD python ./app-asgi.py