website/Dockerfile
Max Richter 2df825187e
Some checks failed
Deploy to SFTP Server / build (push) Failing after 8m57s
feat(ci): use rsync instead of lftp
2024-04-07 19:52:43 +02:00

22 lines
360 B
Docker

FROM node:21-alpine
# Install necessary packages
RUN apk add --no-cache \
git \
git-lfs \
tar \
rsync \
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