feat(ci): use custom image
All checks were successful
Deploy to SFTP Server / build (push) Successful in 29m30s
All checks were successful
Deploy to SFTP Server / build (push) Successful in 29m30s
This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM node:21-alpine
|
||||
|
||||
# Install necessary packages
|
||||
RUN apk add --no-cache \
|
||||
git \
|
||||
git-lfs \
|
||||
bash
|
||||
|
||||
# Install PNPM globally
|
||||
RUN npm install -g pnpm
|
||||
|
||||
# Display installed versions
|
||||
RUN node --version && \
|
||||
npm --version && \
|
||||
git --version && \
|
||||
git-lfs version && \
|
||||
pnpm --version
|
Reference in New Issue
Block a user