muryshev commited on
Commit
fac9f4d
1 Parent(s): cf07b75

fixed source files copy

Browse files
Files changed (2) hide show
  1. .dockerignore +1 -0
  2. Dockerfile +1 -2
.dockerignore CHANGED
@@ -32,3 +32,4 @@
32
  **/dist
33
  LICENSE
34
  README.md
 
 
32
  **/dist
33
  LICENSE
34
  README.md
35
+ *.bat
Dockerfile CHANGED
@@ -27,8 +27,7 @@ RUN --mount=type=bind,source=package.json,target=package.json \
27
  USER node
28
 
29
  # Copy the rest of the source files into the image.
30
- COPY package.json ./package.json
31
- COPY build ./build
32
 
33
  # Expose the port that the application listens on.
34
  EXPOSE 7860
 
27
  USER node
28
 
29
  # Copy the rest of the source files into the image.
30
+ COPY . .
 
31
 
32
  # Expose the port that the application listens on.
33
  EXPOSE 7860