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