Skip to content

Commit b0819bc

Browse files
authored
Merge pull request #83 from UiPath/fix/dockerfile-startup
fix: fix Dockerfile missing EXPOSE and broken shebang
2 parents a1c9faa + 6fdc84d commit b0819bc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ ENV UIPATH_DEV_SERVER_PORT=80
1111
ENV UIPATH_DEV_SERVER_HOST=0.0.0.0
1212
ENV UIPATH_AUTH_ENABLED=false
1313

14+
EXPOSE 80
15+
1416
CMD ["/bin/sh", "/app/start.sh"]

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# !/bin/sh
1+
#!/bin/sh
22
/root/.local/bin/uv venv --clear
33
. ./.venv/bin/activate
44
/root/.local/bin/uv sync

0 commit comments

Comments
 (0)