website/Dockerfile
Max Richter 38a7f83096
Some checks failed
Deploy to SFTP Server / build (push) Failing after 7m54s
feat: some stuff
2024-04-06 18:03:45 +02:00

20 lines
334 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 && \
tar --version && \
git --version && \
git-lfs version && \
pnpm --version