aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Dockerfile2
-rw-r--r--Dockerfile.arm32v72
-rw-r--r--Dockerfile.arm64v82
3 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 29fda0e..205d759 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
4WORKDIR /app 4WORKDIR /app
5 5
6COPY package*.json ./ 6COPY package*.json ./
7RUN yarn install 7RUN yarn install --frozen-lockfile
8 8
9COPY . . 9COPY . .
10RUN yarn build 10RUN yarn build
diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7
index d1ef138..7664f66 100644
--- a/Dockerfile.arm32v7
+++ b/Dockerfile.arm32v7
@@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
4WORKDIR /app 4WORKDIR /app
5 5
6COPY package*.json ./ 6COPY package*.json ./
7RUN yarn install 7RUN yarn install --frozen-lockfile
8 8
9COPY . . 9COPY . .
10RUN yarn build 10RUN yarn build
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8
index 2f26d09..0175341 100644
--- a/Dockerfile.arm64v8
+++ b/Dockerfile.arm64v8
@@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
4WORKDIR /app 4WORKDIR /app
5 5
6COPY package*.json ./ 6COPY package*.json ./
7RUN yarn install 7RUN yarn install --frozen-lockfile
8 8
9COPY . . 9COPY . .
10RUN yarn build 10RUN yarn build