Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
# ==== CONFIGURE =====
|
| 2 |
# Use a Node 16 base image
|
| 3 |
FROM node:16
|
| 4 |
-
# Set the working directory to /
|
| 5 |
-
WORKDIR /
|
| 6 |
# Copy app files
|
| 7 |
COPY . .
|
| 8 |
# ==== BUILD =====
|
|
|
|
| 1 |
# ==== CONFIGURE =====
|
| 2 |
# Use a Node 16 base image
|
| 3 |
FROM node:16
|
| 4 |
+
# Set the working directory to /code inside the container
|
| 5 |
+
WORKDIR /code
|
| 6 |
# Copy app files
|
| 7 |
COPY . .
|
| 8 |
# ==== BUILD =====
|