Spaces:
Sleeping
Sleeping
thewellermangroup
commited on
Commit
•
7857b22
1
Parent(s):
738387e
Update Dockerfile
Browse files- Dockerfile +10 -4
Dockerfile
CHANGED
@@ -18,11 +18,17 @@ RUN pip install flask
|
|
18 |
RUN pip install gunicorn
|
19 |
RUN pip install flask-cors
|
20 |
|
|
|
|
|
21 |
COPY --chown=user app.py app.py
|
22 |
-
|
23 |
-
COPY --chown=user /FUNCTIONS/
|
24 |
-
COPY --chown=user /
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
RUN python /FUNCTIONS/functions.py
|
28 |
|
|
|
18 |
RUN pip install gunicorn
|
19 |
RUN pip install flask-cors
|
20 |
|
21 |
+
|
22 |
+
# the server
|
23 |
COPY --chown=user app.py app.py
|
24 |
+
# functions
|
25 |
+
COPY --chown=user /DATA/FUNCTIONS/functions.py /FUNCTIONS/functions.py
|
26 |
+
COPY --chown=user /DATA/CODE/FUNCTIONS/FUNCTIONS.txt /FUNCTIONS/FUNCTIONS.txt
|
27 |
+
# links
|
28 |
+
COPY --chown=user /DATA/LINKS/LINKS.txt /LINKS/LINKS.txt
|
29 |
+
# right click
|
30 |
+
COPY --chown=user /DATA/CODE/RIGHT_CLICK/RIGHT_CLICK.txt /RIGHT_CLICK/RIGHT_CLICK.txt
|
31 |
+
|
32 |
|
33 |
RUN python /FUNCTIONS/functions.py
|
34 |
|