Skip to content

Commit

Permalink
feat: update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
f-steel committed Aug 23, 2024
1 parent 888e1dd commit a5d240d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ COPY --from=builder /app/server.js ./server.js
USER nextjs

EXPOSE 3000
EXPOSE 1234

ENV PORT 3000

Expand Down
23 changes: 13 additions & 10 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,33 @@ module.exports = {
'main',
{
name: 'beta',
prerelease: true
}
prerelease: true,
},
{
name: 'beta-colab',
prerelease: true,
},
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md'
changelogFile: 'CHANGELOG.md',
},
],
[
"@semantic-release-plus/docker",
'@semantic-release-plus/docker',
{
name: {
namespace: "airwalk-digital",
repository: "airview-next",
namespace: 'airwalk-digital',
repository: 'airview-next',
},
"registry": "ghcr.io",
registry: 'ghcr.io',
skipLogin: true,
},
],
'@semantic-release/github',
]
}

],
};

0 comments on commit a5d240d

Please sign in to comment.