Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/bump next #383

Merged
merged 2 commits into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000

ENV PORT 3000
ENV HOSTNAME host.docker.internal
ENV HOSTNAME localhost

CMD ["node", "server.js"]
2 changes: 2 additions & 0 deletions cdk/lib/app-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ export class AppStack extends cdk.Stack {

const cluster = new ecs.Cluster(this, "ServiceCluster", { vpc });

cluster.addDefaultCloudMapNamespace({ name: this.cloudMapNamespace });

const appAsset = new ecrAssets.DockerImageAsset(this, "app", {
directory: "../",
file: "Dockerfile",
Expand Down
88 changes: 44 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"fathom-client": "^3.5.0",
"html-react-parser": "^3.0.16",
"nanoid": "^4.0.2",
"next": "^13.4.13",
"next": "^13.4.16",
"next-auth": "^4.22.3",
"next-superjson-plugin": "^0.5.9",
"nodemailer": "^6.9.3",
Expand Down
Loading