Spaces:
Running
Running
maartenbreddels
commited on
Commit
•
a8b0740
1
Parent(s):
50e2fca
fix: copy all py and css files in docker
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -16,6 +16,6 @@ COPY --chown=user requirements.txt .
|
|
16 |
# Install requirements
|
17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
18 |
|
19 |
-
COPY --chown=user
|
20 |
|
21 |
ENTRYPOINT ["solara", "run", "wanderlust.py", "--host=0.0.0.0", "--port", "7860"]
|
|
|
16 |
# Install requirements
|
17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
18 |
|
19 |
+
COPY --chown=user *.py *.css /
|
20 |
|
21 |
ENTRYPOINT ["solara", "run", "wanderlust.py", "--host=0.0.0.0", "--port", "7860"]
|