-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Missing express-rate-limit in Docker image
Add express-rate-limit to Dockerfile Move to express-rate-limit to devDependencies
- Loading branch information
amvanbaren
committed
Aug 2, 2024
1 parent
ff3a534
commit 4a06b3f
Showing
2 changed files
with
3 additions
and
2 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 |
---|---|---|
|
@@ -26,7 +26,8 @@ COPY --chown=node:node --from=builder /home/node/builder/lib/default/server.js / | |
WORKDIR /home/node/webui | ||
|
||
# Install Express server | ||
RUN yarn add [email protected] | ||
RUN yarn add [email protected] | ||
RUN yarn add [email protected] | ||
|
||
EXPOSE 3000 | ||
ENTRYPOINT ["node", "lib/default/server"] |
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