We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa128a3 commit d820ed0Copy full SHA for d820ed0
‎Dockerfile.tpl
@@ -9,4 +9,4 @@ WORKDIR /app
9
COPY --from=build-env /go/src/github.com/[[.Repo.Owner]]/[[.Repo.Name]]/app /app/
10
CMD ["./app"]
11
USER 1000
12
-EXPOSE 8080/tcp
+EXPOSE 80/tcp
‎cmd/_app_name_/main.go.tpl
@@ -13,5 +13,5 @@ func main() {
13
router.GET("/albums/:id", album.GetAlbumByID)
14
router.POST("/albums", album.PostAlbums)
15
16
- router.Run("localhost:8080")
+ router.Run("localhost:80")
17
}
0 commit comments