Skip to content

Commit 2296350

Browse files
committed
fix: docker build lockfile
1 parent 907a677 commit 2296350

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY package.json pnpm-lock.yaml* ./
1111
RUN npm install -g pnpm
1212

1313
# 安装依赖
14-
RUN pnpm install --frozen-lockfile
14+
RUN pnpm install
1515

1616
# 复制源代码
1717
COPY . .
@@ -32,4 +32,4 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
3232
EXPOSE 80
3333

3434
# 启动 Nginx
35-
CMD ["nginx", "-g", "daemon off;"]
35+
CMD ["nginx", "-g", "daemon off;"]

0 commit comments

Comments
 (0)