speedrun/Dockerfile

8 lines
201 B
Docker
Raw Permalink Normal View History

2020-06-28 15:12:29 +02:00
FROM python:3.8.2-buster
RUN wget https://github.com/hrfee/speedrun/releases/download/v0.1.0/speedrun-0.1.0-py3-none-any.whl
RUN pip install speedrun-0.1.0-py3-none-any.whl
CMD [ "speedrun-serve" ]