Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into LaraFMz
Browse files Browse the repository at this point in the history
  • Loading branch information
uo276026 committed Apr 9, 2024
2 parents bbe5429 + c2a93af commit 885fb3f
Show file tree
Hide file tree
Showing 6 changed files with 8,227 additions and 14 deletions.
4 changes: 3 additions & 1 deletion gatewayservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ COPY package*.json ./
RUN npm install --ignore-scripts

# Copy the app source code to the working directory
COPY gateway-service.js ./
COPY . .

EXPOSE 8000

# Define the command to run your app
CMD ["node", "gateway-service.js"]
5 changes: 3 additions & 2 deletions questionservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ RUN npm install axios --ignore-scripts
RUN npm install --ignore-scripts

# Copy the app source code to the working directory
COPY server.js ./
COPY questions.json ./
COPY . .

EXPOSE 8003

# Define the command to run your app
CMD ["node", "server.js"]
5 changes: 2 additions & 3 deletions userservice/authservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ WORKDIR /usr/src/authservice
COPY package*.json ./

# Install app dependencies
RUN npm install --ignore-scripts
RUN npm install

# Copy the app source code to the working directory
COPY auth-service.js ./
COPY auth-model.js ./
COPY . .

# Expose the port the app runs on
EXPOSE 8002
Expand Down
Loading

0 comments on commit 885fb3f

Please sign in to comment.