website/Dockerfile

18 lines
301 B
Docker
Raw Normal View History

2024-04-06 16:43:38 +02:00
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