Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM ubuntu:22.04
|
2 |
RUN apt-get update && apt-get install -y aria2
|
3 |
-
|
4 |
WORKDIR /app
|
5 |
COPY . .
|
6 |
RUN chmod +x start.sh && mkdir -p local && chmod 777 local && mkdir -p data && chmod 777 data && chmod +x ${app}
|
|
|
1 |
FROM ubuntu:22.04
|
2 |
RUN apt-get update && apt-get install -y aria2
|
3 |
+
ARG app
|
4 |
WORKDIR /app
|
5 |
COPY . .
|
6 |
RUN chmod +x start.sh && mkdir -p local && chmod 777 local && mkdir -p data && chmod 777 data && chmod +x ${app}
|