Skip to content

Commit 73ba802

Browse files
committedMar 5, 2025·
fix: docker build file
1 parent 8568d84 commit 73ba802

File tree

7 files changed

+5451
-10
lines changed

7 files changed

+5451
-10
lines changed
 

‎.vscode/settings.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
{
1313
"pattern": "./packages/*/"
1414
}
15-
],
16-
"CodeGPT.apiKey": "CodeGPT Plus Beta"
15+
]
1716
}

‎apps/cron/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM node:20.16.0-alpine AS base
22
RUN apk update
33
RUN apk add --no-cache libc6-compat
44

5-
RUN corepack enable
5+
# RUN corepack enable
6+
RUN npm install --global corepack@latest
67

78
ENV PNPM_HOME="/pnpm"
89
ENV PATH="$PNPM_HOME:$PATH"

‎apps/server/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM node:20.16.0-alpine AS base
22
RUN apk update
33
RUN apk add --no-cache libc6-compat
44

5-
RUN corepack enable
5+
# RUN corepack enable
6+
RUN npm install --global corepack@latest
67

78
ENV PNPM_HOME="/pnpm"
89
ENV PATH="$PNPM_HOME:$PATH"

‎infrastructure/Pulumi.production.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
config:
22
aws:region: ap-northeast-2
33
velog:DOCKER_ENV: production
4-
velog:target: server
4+
velog:target: cron

0 commit comments

Comments
 (0)
Please sign in to comment.