Spaces:
Running
Running
davidgasquez
commited on
Commit
β’
382bae7
1
Parent(s):
f0cb964
chore: π¨ update Docker `CMD` port and comment `sync` command
Browse filesUpdate CMD to use port 7860 instead of 3000 and comment out redundant RUN command.
- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -8,7 +8,6 @@ COPY Makefile pyproject.toml uv.lock /app/
|
|
8 |
|
9 |
WORKDIR /app
|
10 |
|
11 |
-
RUN [ "uv", "sync" ]
|
12 |
|
13 |
-
CMD [ "uv", "run", "dagster", "dev", "-h", "0.0.0.0", "-p", "
|
14 |
-
# CMD [ "bash" ]
|
|
|
8 |
|
9 |
WORKDIR /app
|
10 |
|
11 |
+
# RUN [ "uv", "sync" ]
|
12 |
|
13 |
+
CMD [ "uv", "run", "dagster", "dev", "-h", "0.0.0.0", "-p", "7860" ]
|
|