diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2bc50ba..7878991 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,10 +15,10 @@ jobs: uses: pnpm/action-setup@v4 with: version: 9 - - name: Use Node.js 22 + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 20 - name: Install, test, deploy run: | pnpm install --frozen-lockfile diff --git a/Dockerfile b/Dockerfile index 4b5c5fc..838f000 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ WORKDIR /app # Building presumably already happened COPY . . -RUN pnpm install --frozen-lockfile --ignore-scripts +# --ignore-scripts because of panda. The full source code is not included in the tarball and so panda would fail. +RUN pnpm install --ignore-scripts ENV NODE_ENV production ENV PORT 80