-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SB02 Official Solution #4
Open
gaplo917
wants to merge
2
commits into
master
Choose a base branch
from
SB02-solution
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+39
−7
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Commmon | ||
**/.git | ||
**/.gitignore | ||
**/README.md | ||
**/.idea | ||
**/.vscode | ||
**/*.log | ||
|
||
# NodeJs Specific | ||
**/node_modules | ||
|
||
# Project Specific | ||
.next |
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,18 +1,37 @@ | ||
FROM node:12 | ||
# Use a more specific version for your production containers can help resolve issues | ||
FROM node:12.18.1-alpine3.12 as FirstStage | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
# Installing dependencies | ||
COPY package*.json ./ | ||
COPY package.json yarn.lock ./ | ||
|
||
RUN npm install | ||
# Should use same package management as same as your development workflow | ||
# The dependencies lock file is critical for reproduce to same behaviour | ||
RUN yarn install --frozen-lockfile | ||
|
||
# Copying Assets files | ||
COPY public ./public | ||
|
||
# Copying source files | ||
COPY . . | ||
COPY pages ./pages | ||
|
||
# 1. Building app | ||
# 2. Remove Dev Dependencies | ||
RUN yarn build \ | ||
&& yarn install --production --frozen-lockfile --offline | ||
|
||
# Final Stage | ||
FROM node:12.18.1-alpine3.12 | ||
|
||
WORKDIR /usr/src/app | ||
|
||
# Copy all files from builder | ||
COPY --from=FirstStage /usr/src/app /usr/src/app | ||
|
||
# Building app | ||
RUN npm run build | ||
# This don't actually publish the port but to give better documentation to your DevOps colleagues | ||
EXPOSE 3000 | ||
|
||
# Running the app | ||
CMD [ "npm", "start" ] | ||
CMD [ "yarn", "start" ] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yarn build 應該係唔 work 既command?應該係 yarn run build 先啱?sorry, 啱啱睇番document發現佢會自己做番 alias
yarn build
=yarn run build
但係想問番另一樣:
yarn install --frozen-lockfile
同埋
yarn install --production --frozen-lockfile --offline
分開行有無咩原因?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
通常行
build
時都必定要有devDependencies
,例如babel
,webpack
就會裝埋
devDependencies
之後再行
就會 remove 所有
devDependencies
詳細解釋可以參考呢度 https://gaplo.tech/sb02-docker-build-solution/