fastwsgi.dockerfile 225 B

1234567891011121314
  1. FROM python:3.11-bullseye
  2. WORKDIR /usr/src/app
  3. COPY requirements.txt ./
  4. RUN apt-get update
  5. RUN pip install --no-cache-dir ujson
  6. RUN pip install --no-cache-dir -r requirements.txt
  7. COPY . .
  8. EXPOSE 3000
  9. CMD python ./app.py