Max Richter
67d82f05f1
All checks were successful
Deploy to SFTP Server / build (push) Successful in 21m57s
19 lines
311 B
Docker
19 lines
311 B
Docker
FROM node:21-alpine
|
|
|
|
# Install necessary packages
|
|
RUN apk add --no-cache \
|
|
git \
|
|
git-lfs \
|
|
tar \
|
|
bash
|
|
|
|
# Install PNPM globally
|
|
RUN npm install -g pnpm
|
|
|
|
# Display installed versions
|
|
RUN node --version && \
|
|
npm --version && \
|
|
git --version && \
|
|
git-lfs version && \
|
|
pnpm --version
|