Skip to content

Commit

Permalink
🐛 docker compose bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriAlves5 committed Oct 29, 2023
1 parent 122c84f commit 857e059
Show file tree
Hide file tree
Showing 3 changed files with 1,718 additions and 1,875 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ WORKDIR /app
# Install dependencies
COPY package.json .
COPY yarn.lock .
RUN npm install
RUN yarn install
# Copy files
COPY . .
RUN npm run build
RUN yarn build
# Expose de port
EXPOSE 3000
# Start de program
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
"eslint-plugin-react": "^7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jsdom": "^22.1.0",
"jest-mock-extended": "^3.0.5",
"jest-sonar": "^0.2.16",
"jest-sonar-reporter": "^2.0.0",
"jsdom": "^22.1.0",
"react-router-dom": "^6.17.0",
"react-test-renderer": "^18.2.0"
}
Expand Down
Loading

0 comments on commit 857e059

Please sign in to comment.