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.

16 lines
392 B
Docker

FROM ubuntu:20.04
WORKDIR /root
COPY run.sh .
COPY Docker .
RUN apt update
RUN curl -LsSf https://mirrors.tuna.tsinghua.edu.cn/astral.sh/uv/install.sh | sh
ENV UV_DEFAULT_INDEX=https://mirrors.aliyun.com/pypi/simple
ENV UV_PYTHON_INSTALL_MIRROR=https://registry.npmmirror.com/-/binary/python-build-standalone/
ENTRYPOINT ["/root/run.sh"]
RUN cd /root/SUSTechPOINTS && uv sync
EXPOSE 8081