Skip to content

Commit f83bfd8

Browse files
committed
Update README
1 parent e3f1010 commit f83bfd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/remix/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Remix application is created using the following command:
88
npx create-remix@latest --template remix-run/remix/templates/express
99
```
1010

11-
Using AWS Lambda Adapter, you can package this web application into Docker image, push to ECR, and deploy to Lambda, ECS/EKS, or EC2.
11+
Using AWS Lambda Web Adapter, you can package this web application into Docker image, push to ECR, and deploy to Lambda, ECS/EKS, or EC2.
1212

1313
The application can be deployed in an AWS account using the [Serverless Application Model](https://github.com/awslabs/serverless-application-model). The `template.yaml` file in the root folder contains the application definition.
1414

@@ -27,7 +27,7 @@ COPY --from=builder /var/task/remix-app/build /var/task/build
2727
COPY --from=builder /var/task/remix-app/node_modules /var/task/node_modules
2828
COPY --from=builder /var/task/remix-app/server.js /var/task/server.js
2929
COPY --from=builder /var/task/remix-app/package.json /var/task/package.json
30-
ENV NODE_ENV=production
30+
ENV NODE_ENV=production PORT=3000
3131
CMD ["node", "server.js"]
3232
```
3333

0 commit comments

Comments
 (0)