Skip to content

Commit 690f7c6

Browse files
Create aiohttp-pypy.dockerfile
1 parent 8ab3849 commit 690f7c6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM pypy:3.13
2+
3+
ADD ./requirements.txt /aiohttp/requirements.txt
4+
5+
RUN pip3 install cython==3.0.11 && \
6+
pip3 install -r /aiohttp/requirements.txt
7+
8+
ADD ./ /aiohttp
9+
10+
WORKDIR /aiohttp
11+
12+
ENV CONNECTION=RAW
13+
14+
EXPOSE 8080
15+
16+
CMD python3 -O -m app.server

0 commit comments

Comments
 (0)