Update Dockerfile
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m12s

This commit is contained in:
Cameron Redmore 2025-04-18 17:16:26 +01:00
parent cd42596842
commit 9804c49464

View file

@ -1,5 +1,7 @@
FROM node:22-alpine FROM node:22-alpine
# Add in Docker for building anything with docker # Add in Docker for building anything with docker
RUN apk add docker RUN apk add docker
# Add OpenSSH Client for SSH connections to remote servers
RUN apk add openssh-client
# Install other package management tools # Install other package management tools
RUN npm i -g pnpm RUN npm i -g pnpm