-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3068bb1
commit 9215a5d
Showing
3 changed files
with
18 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM node:22-slim | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && apt-get install -y curl | ||
|
||
COPY frontend/package.json frontend/pnpm-lock.yaml ./ | ||
|
||
ENV NODE_ENV=production | ||
ENV CI=true | ||
RUN npm install -g pnpm && pnpm install --frozen-lockfile | ||
|
||
COPY frontend/. . | ||
|
||
EXPOSE 3100 | ||
CMD ["pnpm", "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