Update Dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 34s

This commit is contained in:
Cameron Redmore 2025-04-18 17:28:34 +01:00
parent 9804c49464
commit b0177a904d

View file

@ -1,7 +1,14 @@
FROM node:22-alpine
# Add in bash for ease of use
RUN apk add bash
# Add in Docker for building anything with docker
RUN apk add docker
# Add OpenSSH Client for SSH connections to remote servers
RUN apk add openssh-client
# Install other package management tools
RUN npm i -g pnpm
RUN npm i -g pnpm
#Add entrypoint file
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]