atas / Dockerfile
eatYour's picture
Update Dockerfile
54c9a40 verified
raw
history blame
231 Bytes
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y aria2
WORKDIR /app
COPY . .
RUN chmod +x start.sh && mkdir -p local && chmod 777 local
RUN mkdir -p ${app}/data
EXPOSE 7860
RUN chmod +x ${app}
CMD ["/app/start.sh"]