socketify.py/tests/examples/docker/pypy3/Dockerfile

13 wiersze
164 B
Docker
Czysty Zwykły widok Historia

2022-05-29 02:18:03 +00:00
FROM pypy:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 3000
CMD [ "pypy3", "./main.py" ]