This commit is contained in:
2023-12-06 06:55:26 +00:00
parent e89fca1624
commit 8421a269ed
12 changed files with 635 additions and 925 deletions

View File

@@ -15,7 +15,7 @@ RUN yarn install
COPY . .
# Your app binds to port 80 so you'll use the EXPOSE instruction to have it mapped by the docker daemon
EXPOSE 80
EXPOSE 8081
# Define the command to run your app using CMD which defines your runtime
CMD ["yarn", "run", "--", "live-server", "--no-browser", "--port=80", "--ignore='*'", "--entry-file=spa.html", "--no-css-inject", "--proxy=/api:http://tibi-server:8080/api/v1/_/einfo_test", "frontend"]
CMD ["yarn", "run", "live-server", "--no-browser", "--port=8081", "--ignore='*'", "--entry-file=spa.html", "--no-css-inject", "--proxy=/api:http://tibi-server:8080/api/v1/_/einfo_test", "frontend"]