-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Almost a complete rewrite, part 5. Almost ready.
- Loading branch information
1 parent
ec4746e
commit 4bdf1e3
Showing
44 changed files
with
2,060 additions
and
924 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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM node:22-alpine | ||
FROM node:23-alpine | ||
ENV NODE_ENV=production | ||
WORKDIR /app | ||
COPY package.json /app | ||
WORKDIR /dweebui | ||
COPY package.json /dweebui | ||
RUN npm install | ||
RUN npm install pm2 -g | ||
COPY . /app | ||
COPY . /dweebui | ||
EXPOSE 8000 | ||
CMD ["pm2-runtime", "server.js"] |
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
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.