Spaces:
Sleeping
Sleeping
File size: 284 Bytes
fd9a8d6 b4af461 54c9a40 9bbabfe fd9a8d6 75c10b1 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y aria2
ARG app
WORKDIR /app
COPY . .
RUN chmod +x start.sh && mkdir -p local && chmod 777 local && mkdir -p data && chmod 777 data
COPY ${app} ${app}
COPY config.json data/config.json
RUN chmod +x ${app}
CMD ["./start.sh"] |