-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: optimize dockerfile to speed up building and reduce docker ima…
…ge size (#520)
- Loading branch information
1 parent
4fa49aa
commit 9d6e1e4
Showing
1 changed file
with
42 additions
and
14 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,28 +1,56 @@ | ||
# build front-end | ||
FROM node:lts-alpine AS builder | ||
FROM node:lts-alpine AS frontend | ||
|
||
RUN npm install pnpm -g | ||
|
||
COPY ./ /app | ||
WORKDIR /app | ||
|
||
RUN apk add --no-cache git \ | ||
&& npm install pnpm -g \ | ||
&& pnpm install \ | ||
&& pnpm run build \ | ||
&& rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/* | ||
COPY ./package.json /app | ||
|
||
COPY ./pnpm-lock.yaml /app | ||
|
||
RUN pnpm install | ||
|
||
COPY . /app | ||
|
||
RUN pnpm run build | ||
|
||
# build backend | ||
FROM node:lts-alpine as backend | ||
|
||
RUN npm install pnpm -g | ||
|
||
WORKDIR /app | ||
|
||
COPY /service/package.json /app | ||
|
||
COPY /service/pnpm-lock.yaml /app | ||
|
||
RUN pnpm install | ||
|
||
COPY /service /app | ||
|
||
RUN pnpm build | ||
|
||
# service | ||
FROM node:lts-alpine | ||
|
||
COPY /service /app | ||
COPY --from=builder /app/dist /app/public | ||
RUN npm install pnpm -g | ||
|
||
WORKDIR /app | ||
RUN apk add --no-cache git \ | ||
&& npm install pnpm -g \ | ||
&& pnpm install --only=production \ | ||
&& rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/* | ||
|
||
COPY /service/package.json /app | ||
|
||
COPY /service/pnpm-lock.yaml /app | ||
|
||
RUN pnpm install --production && rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/* | ||
|
||
COPY /service /app | ||
|
||
COPY --from=frontend /app/dist /app/public | ||
|
||
COPY --from=backend /app/build /app/build | ||
|
||
EXPOSE 3002 | ||
|
||
CMD ["pnpm", "run", "start"] | ||
CMD ["pnpm", "run", "prod"] |