aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 6a6d741..58d08dc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,8 +3,8 @@ FROM node:lts-alpine3.19 as build-stage
3 3
4WORKDIR /app 4WORKDIR /app
5 5
6COPY package*.json ./ 6COPY package.json ./
7RUN yarn install --frozen-lockfile 7RUN yarn install --frozen-lockfile --non-interactive
8 8
9COPY . . 9COPY . .
10RUN yarn build 10RUN yarn build