ds2 / Dockerfile
StarrySkyWorld's picture
Update Dockerfile
58cec8c verified
raw
history blame contribute delete
196 Bytes
FROM ghcr.io/astral-sh/uv:debian
WORKDIR /app
COPY . .
RUN uv init && uv add -r deps.txt
RUN apt-get update -y && apt-get install wget curl git unzip zip -y
ENTRYPOINT ["sh", "entrypoint.sh"]