Spaces:
Runtime error
Runtime error
rt
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -25,7 +25,7 @@ WORKDIR $HOME/app
|
|
25 |
RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=$HOME/app sh
|
26 |
|
27 |
# # Copy the app to the container
|
28 |
-
COPY --chown=
|
29 |
|
30 |
RUN chmod 777 entrypoint.sh
|
31 |
|
@@ -34,5 +34,5 @@ RUN uv sync --frozen
|
|
34 |
|
35 |
# # Expose the ports
|
36 |
EXPOSE 7860 6333
|
37 |
-
|
38 |
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
25 |
RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=$HOME/app sh
|
26 |
|
27 |
# # Copy the app to the container
|
28 |
+
COPY --chown=root . $HOME/app
|
29 |
|
30 |
RUN chmod 777 entrypoint.sh
|
31 |
|
|
|
34 |
|
35 |
# # Expose the ports
|
36 |
EXPOSE 7860 6333
|
37 |
+
|
38 |
ENTRYPOINT ["./entrypoint.sh"]
|