You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
q-a_platform/Dockerfile

6 lines
172 B
Docker

3 years ago
FROM python:3.7.7
COPY . /debugger
WORKDIR /debugger
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
ENTRYPOINT ["python"]
CMD ["flasky.py"]