diff --git a/docker-compose.yaml b/docker-compose.yaml index 2dcab0f..55c4e88 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -19,4 +19,6 @@ services: depends_on: - backend ports: - - "3000:3000" \ No newline at end of file + - "3000:3000" + environment: + - CHOKIDAR_USEPOLLING=true diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 589945b..9b96a33 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -3,6 +3,7 @@ FROM node:16-alpine WORKDIR /app COPY package.json . +COPY package-lock.json . RUN npm i diff --git a/frontend/public/index.html b/frontend/public/index.html index aa069f2..179a704 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -2,14 +2,14 @@ - + - + - React App + System PRI diff --git a/frontend/public/notes.ico b/frontend/public/notes.ico new file mode 100644 index 0000000..d94ba17 Binary files /dev/null and b/frontend/public/notes.ico differ