-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: container version of the lambda function (#13)
- Loading branch information
Showing
7 changed files
with
825 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
.git | ||
**/__mocks__ | ||
**/*.test.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
ARG NODE_IMAGE=node:18-alpine | ||
|
||
FROM ${NODE_IMAGE} | ||
ENV NODE_ENV=production | ||
EXPOSE 8000 | ||
USER node | ||
WORKDIR /app | ||
COPY --chown=node:node ["package.json", "package-lock.json*", "index.js", "server.js", "./"] | ||
# Delete prepare script to avoid errors from husky | ||
RUN npm pkg delete scripts.prepare \ | ||
&& npm ci --omit=dev | ||
CMD [ "npm", "run", "start" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.