Skip to content

Commit

Permalink
Fix port issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gregor-i committed Jan 12, 2024
1 parent b80744c commit 1318c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ COPY frontend/src/main/static build
COPY --from=build-sw /app/build/sw.js /app/build/sw.js
COPY --from=build-css /app/build/app.css /app/build/app.css
COPY --from=build-frontend /app/build/app.js /app/build/app.js
EXPOSE 80
CMD ["busybox", "httpd", "-f", "-v", "-h", "/app/build"]
EXPOSE 8080
CMD ["busybox", "httpd", "-f", "-v", "-p", "8080", "-h", "/app/build"]

0 comments on commit 1318c36

Please sign in to comment.