diff --git a/.woodpecker.yml b/.woodpecker.yml index 36aba04..e9b712b 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,5 @@ variables: - - &node_image node:20-slim + - &node_image node:20-alpine steps: install-deps: @@ -125,7 +125,7 @@ steps: commands: - echo "Checking SSH client availability" - which ssh && echo "SSH client found" || echo "Installing SSH client" - - apt-get update && apt-get install -y openssh-client rsync + - apk add --no-cache openssh-client rsync - echo "Building production artifacts" - npm run build - echo "Build completed"