Skip to content

Commit

Permalink
chore(ilt-6): change service port
Browse files Browse the repository at this point in the history
  • Loading branch information
husni-zuhdi committed Nov 5, 2023
1 parent 969a454 commit 5931443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ilt-6/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WORKDIR /
COPY --from=build-stage /ilt-6 /ilt-6
COPY assets ./assets

EXPOSE 8080
EXPOSE 80

USER nonroot:nonroot

Expand Down
2 changes: 1 addition & 1 deletion ilt-6/cmd/ilt-6/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ func main() {
router := gin.Default()
router.Static("/", "./assets")

router.Run(":8080")
router.Run(":80")
}

0 comments on commit 5931443

Please sign in to comment.