Needs python
Some checks failed
Build and deploy / deploy (push) Failing after 37s

This commit is contained in:
2024-10-12 01:30:42 +01:00
parent ed3367e047
commit 35e1e27e74
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@ jobs:
-
name: Set up docker
run: 'curl -fsSL https://get.docker.com | sh'
-
name: Set up python
run: |
apt update
apt install python3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

View File

@@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
COPY package.json package-lock.json ./
RUN npm ci --force