build-image/Dockerfile
cameron 5be680f63a
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m39s
Update Dockerfile
2025-08-04 22:48:57 +01:00

18 lines
No EOL
437 B
Docker

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
# Add zip and unzip
RUN apk add zip unzip
# Install other package management tools
RUN npm i -g pnpm
#Add entrypoint file
COPY entrypoint.sh /entrypoint.sh
RUN date > /buildstamp.txt
ENTRYPOINT ["/entrypoint.sh"]