Spaces:
Running
Running
bradduy
commited on
Commit
·
719783e
1
Parent(s):
7b65245
update dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -4,13 +4,12 @@ FROM node:20
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
COPY --chown=nextjs:nodejs --from=builder /app/ ./
|
8 |
-
|
9 |
COPY package*.json ./
|
10 |
|
11 |
# Install dependencies
|
12 |
RUN yarn install
|
13 |
|
|
|
14 |
|
15 |
# Copy the rest of the application code into the container
|
16 |
COPY . .
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
7 |
COPY package*.json ./
|
8 |
|
9 |
# Install dependencies
|
10 |
RUN yarn install
|
11 |
|
12 |
+
COPY --chown=nextjs:nodejs --from=builder /app/ ./
|
13 |
|
14 |
# Copy the rest of the application code into the container
|
15 |
COPY . .
|