atas / Dockerfile
eatYour's picture
Update Dockerfile
c7dddfc verified
raw
history blame
219 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 data
EXPOSE 7860
RUN chmod +x ${app}
CMD ["start.sh"]