Skip to content

Commit

Permalink
feature/frontend -update
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Mar 27, 2024
1 parent 9e2cd5d commit bc268e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions starter/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ RUN mkdir -p public
RUN mkdir -p src
# Copy dependdency files
COPY package*.json .
#COPY public/ /app/public/
#COPY src/ /app/src/
COPY public /app/public/
COPY src /app/src/
COPY public/ /app/
COPY src/ /app/
#COPY public /app/public/
#COPY src /app/src/

RUN ls -lrt /app/
# Install packages
Expand Down
3 changes: 2 additions & 1 deletion starter/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"scripts": {
"serve": "serve -s build",
"lint": "eslint .",
"start": "react-scripts start --entry ./public/index.html",
"start": "react-scripts start",

"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns",
"clean": "rm -rf ./node_modules && rm -rf ./build"
Expand Down

0 comments on commit bc268e8

Please sign in to comment.