Skip to content

Commit a2cc2a8

Browse files
authored
fix: dockerfile (#297)
1 parent 5a56bde commit a2cc2a8

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ jobs:
6161
run: |
6262
pnpm build
6363
64+
- name: Build Docker image
65+
run: |
66+
docker build -t stripe-sync-engine .
67+
6468
- name: Initialize DB schema
6569
run: |
6670
docker run --rm \

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM node:25-alpine AS base
44
ENV PNPM_HOME="/pnpm"
55
ENV PATH="$PNPM_HOME:$PATH"
66

7-
RUN corepack enable
7+
RUN npm install -g corepack --force && corepack enable
88

99
WORKDIR /app
1010
COPY . ./

0 commit comments

Comments
 (0)