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

7 lines
184 B
Docker

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