Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -17,5 +17,10 @@ ENV PYTHONUNBUFFERED=1
|
|
17 |
|
18 |
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/launcher.py /subgen/launcher.py
|
19 |
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen.py /subgen/subgen.py
|
|
|
|
|
|
|
20 |
USER user
|
|
|
|
|
21 |
CMD [ "bash", "-c", "python3 -u launcher.py" ]
|
|
|
17 |
|
18 |
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/launcher.py /subgen/launcher.py
|
19 |
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen.py /subgen/subgen.py
|
20 |
+
|
21 |
+
COPY --chown=user . $HOME/subgen
|
22 |
+
|
23 |
USER user
|
24 |
+
|
25 |
+
|
26 |
CMD [ "bash", "-c", "python3 -u launcher.py" ]
|