-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update title of page and upgrade dependencies (#9)
* chore(docker); change node version * fix: update head element: meta tags * chore: add `@emotion/css` dependency * feat: add copyright text * chore: upgrade dependencies * chore: update tsconfig.json
- Loading branch information
1 parent
4d60e1c
commit 37c666a
Showing
7 changed files
with
416 additions
and
335 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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
FROM node:18 as builder | ||
FROM node:20-alpine AS base | ||
|
||
FROM base AS builder | ||
|
||
COPY / /workspace | ||
WORKDIR /workspace | ||
|
||
ENV TZ Asia/Seoul | ||
EXPOSE 3000 | ||
|
||
ARG NEXT_PUBLIC_SUPABASE_URL | ||
ARG NEXT_PUBLIC_SUPABASE_ANON_KEY | ||
|
||
RUN yarn && yarn build | ||
|
||
USER node | ||
|
||
FROM node:18 as runner | ||
FROM base AS runner | ||
|
||
COPY --chown=node:node --from=builder /workspace/ ./ | ||
|
||
ENV NODE_ENV production | ||
ENV TZ Asia/Seoul | ||
EXPOSE 3000 | ||
|
||
CMD ["yarn", "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
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
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.