teleport optional
Build and Push Docker Images / build-and-push (push) Successful in 3m17s

This commit is contained in:
Bram Kelchtermans
2024-12-11 11:32:24 +01:00
parent e9fb3558db
commit 9881e7eb7d
3 changed files with 34 additions and 29 deletions
+9 -1
View File
@@ -8,7 +8,15 @@ WORKDIR /workspace
RUN npm install -g pm2
# Install git, openssh-client, openssh-server, and other necessary packages
RUN apt-get update && apt-get install -y git openssh-client openssh-server software-properties-common sudo
RUN apt-get update && apt-get install -y \
git \
openssh-client \
openssh-server \
software-properties-common \
sudo \
curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install additional package managers
RUN npm install -g pnpm