2024-04-06 16:43:38 +02:00
|
|
|
FROM node:21-alpine
|
|
|
|
|
|
|
|
# Install necessary packages
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
git \
|
|
|
|
git-lfs \
|
2024-04-06 17:29:57 +02:00
|
|
|
tar \
|
2024-04-07 21:27:47 +02:00
|
|
|
rclone \
|
2024-04-07 19:52:43 +02:00
|
|
|
openssh \
|
2024-04-06 16:43:38 +02:00
|
|
|
bash
|
|
|
|
|
|
|
|
# Install PNPM globally
|
|
|
|
RUN npm install -g pnpm
|
|
|
|
|
|
|
|
# Display installed versions
|
|
|
|
RUN node --version && \
|
|
|
|
npm --version && \
|
2024-04-06 18:03:45 +02:00
|
|
|
tar --version && \
|
2024-04-06 16:43:38 +02:00
|
|
|
git --version && \
|
|
|
|
git-lfs version && \
|
|
|
|
pnpm --version
|