Skip to content

Commit db36ec6

Browse files
committed
🔄 Synced file(s) with devstream-io/devstream
1 parent d820ed0 commit db36ec6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎Dockerfile.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ WORKDIR /app
99
COPY --from=build-env /go/src/github.com/[[.Repo.Owner]]/[[.Repo.Name]]/app /app/
1010
CMD ["./app"]
1111
USER 1000
12-
EXPOSE 80/tcp
12+
EXPOSE 8080/tcp

‎cmd/_app_name_/main.go.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ func main() {
1313
router.GET("/albums/:id", album.GetAlbumByID)
1414
router.POST("/albums", album.PostAlbums)
1515
16-
router.Run("localhost:80")
16+
router.Run("localhost:8080")
1717
}

0 commit comments

Comments
 (0)