aiohttp-orm.dockerfile 248 B

12345678910111213141516
  1. FROM python:3.13
  2. ADD ./requirements.txt /aiohttp/requirements.txt
  3. RUN pip3 install cython==3.0.11 && \
  4. pip3 install -r /aiohttp/requirements.txt
  5. ADD ./ /aiohttp
  6. WORKDIR /aiohttp
  7. ENV CONNECTION=ORM
  8. EXPOSE 8080
  9. CMD python3 -O -m app.server