-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix production docker build by doing esbuild for docker
- Loading branch information
Francis Duvivier
committed
Jan 5, 2025
1 parent
b684b00
commit 7ede800
Showing
5 changed files
with
785 additions
and
613 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,23 +1,31 @@ | ||
# Build Stage | ||
FROM node:22-bookworm-slim AS build | ||
|
||
WORKDIR /home/node/app | ||
|
||
COPY package*.json ./ | ||
RUN npm ci --ignore-scripts | ||
COPY . . | ||
RUN npm run build | ||
|
||
# Prod stage | ||
FROM node:22-bookworm-slim | ||
|
||
WORKDIR /home/node/app | ||
ENV NODE_ENV=production | ||
|
||
# Copy only needed files | ||
COPY --chown=node:node ./package*.json . | ||
COPY --chown=node:node --from=build /home/node/app/dist ./dist | ||
COPY --chown=node:node --from=build /home/node/app/database.json ./database.json | ||
COPY --chown=node:node --from=build /home/node/app/migrations ./migrations | ||
COPY --chown=node:node --from=build /home/node/app/public ./public | ||
COPY --chown=node:node --from=build /home/node/app/package*.json ./ | ||
|
||
RUN npm ci --only=production --ignore-scripts | ||
|
||
COPY --chown=node:node process.json . | ||
COPY process.json . | ||
RUN mkdir -p /home/node/.pm2 /home/node/app/logs /home/node/app/pids && chown -R node:node /home/node/.pm2 /home/node/app/logs | ||
|
||
# db-migrate stuff | ||
COPY --chown=node:node migrations ./migrations | ||
COPY --chown=node:node database.json . | ||
|
||
COPY --chown=node:node ./public ./public | ||
COPY --chown=node:node ./src ./src | ||
|
||
USER node | ||
EXPOSE 8081 | ||
CMD ["./node_modules/pm2/bin/pm2-runtime", "process.json"] |
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.