Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.
Merged

Dev #12

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:20-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install --omit=dev
RUN npm install
RUN npm cache clean --force


Expand Down
2 changes: 1 addition & 1 deletion services/auth-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:20-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install --omit=dev
RUN npm install
RUN npm cache clean --force

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion services/quiz-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:20-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install --omit=dev
RUN npm install
RUN npm cache clean --force

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion services/result-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:20-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install --omit=dev
RUN npm install
RUN npm cache clean --force

COPY . .
Expand Down