Update Dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 34s
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 34s
This commit is contained in:
parent
9804c49464
commit
b0177a904d
1 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
||||
#Add entrypoint file
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue