Builds Docker image of backend component with multi-stage Dockerfile

Updates package.json `npm start` command
Delete unnecessary `npm run start` commands

Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar
2023-02-26 14:50:49 +03:00
parent 0f143adbde
commit 23418b3a09
3 changed files with 18 additions and 9 deletions

View File

@@ -1,18 +1,28 @@
FROM node:16-bullseye-slim AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci --only-production --ignore-scripts
COPY . .
RUN npm run build
FROM node:16-bullseye-slim
WORKDIR /app
COPY package.json package-lock.json ./
# RUN npm ci --only-production --ignore-scripts
# "prepare": "cd .. && npm install"
COPY package*.json ./
RUN npm ci --only-production
COPY . .
COPY --from=build /app .
HEALTHCHECK --interval=10s --timeout=3s --start-period=10s \
CMD node healthcheck.js
EXPOSE 4000
CMD ["npm", "run", "start"]

View File

@@ -48,7 +48,7 @@
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"start": "node build/index.js",
"dev": "nodemon",
"swagger-autogen": "node ./swagger/index.ts",
"build": "rimraf ./build && tsc && cp -R ./src/templates ./build",

View File

@@ -1,4 +1,4 @@
version: '3'
version: "3"
services:
nginx:
@@ -22,7 +22,6 @@ services:
depends_on:
- mongo
image: infisical/backend
command: npm run start
env_file: .env
environment:
- NODE_ENV=production