atas / Dockerfile
eatYour's picture
Update Dockerfile
b4af461 verified
raw
history blame
239 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"]