-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #557 from jiphyeonjeon-42/develop
feat!: Tag && Type
- Loading branch information
Showing
90 changed files
with
3,923 additions
and
9,934 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
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,6 +1,13 @@ | ||
FROM node:16 | ||
FROM node:18-alpine | ||
# https://github.com/pnpm/pnpm/issues/4495#issuecomment-1317831712 | ||
ENV PNPM_HOME="/root/.local/share/pnpm" | ||
ENV PATH="${PATH}:${PNPM_HOME}" | ||
RUN npm install --global pnpm | ||
|
||
COPY . . | ||
RUN yarn | ||
RUN pnpm install | ||
|
||
ENTRYPOINT [ "sh", "start.sh"] | ||
RUN pnpm install --global pm2 | ||
RUN pm2-runtime --version || exit 1 | ||
|
||
ENTRYPOINT [ "sh", "start.sh"] |
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.