fixed source files copy
Browse files- .dockerignore +1 -0
- 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
|
| 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
|