website/Dockerfile
Max Richter 6fb457c7ce
All checks were successful
Deploy to SFTP Server / build (push) Successful in 6m41s
fix: ci
2024-04-07 21:27:47 +02:00

22 lines
361 B
Docker

FROM node:21-alpine
# Install necessary packages
RUN apk add --no-cache \
git \
git-lfs \
tar \
rclone \
openssh \
bash
# Install PNPM globally
RUN npm install -g pnpm
# Display installed versions
RUN node --version && \
npm --version && \
tar --version && \
git --version && \
git-lfs version && \
pnpm --version