Skip to content

Commit

Permalink
MInor modifiation in deploy.yml; triggering workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sikehish committed Jun 9, 2024
1 parent d8fb444 commit 86510c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM node:latest
WORKDIR /app
COPY package*.json ./
COPY package.json ./
# COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
Expand Down
3 changes: 2 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM node:latest as build
WORKDIR /app
COPY package*.json ./
# COPY package*.json ./
COPY package.json ./
RUN npm install
COPY . .

Expand Down

0 comments on commit 86510c5

Please sign in to comment.