node 22 slim
Build and Push Docker Images / build-and-push (push) Successful in 2m37s

This commit is contained in:
2025-09-24 22:18:24 +02:00
parent 051067cc24
commit 902d2fd1eb
+8 -2
View File
@@ -1,9 +1,15 @@
# Use an official Node.js runtime as a parent image # Use an official Node.js runtime as a parent image
FROM node:22 FROM node:22-slim
# Set the working directory # Set the working directory
WORKDIR /workspace WORKDIR /workspace
RUN apt-get update && apt-get install -y \
build-essential \
python3 \
git \
&& rm -rf /var/lib/apt/lists/*
# Install PM2 globally # Install PM2 globally
RUN npm install -g pm2 RUN npm install -g pm2
@@ -11,7 +17,7 @@ RUN npm install -g pm2
RUN apt-get update && apt-get install -y git openssh-client software-properties-common sudo RUN apt-get update && apt-get install -y git openssh-client software-properties-common sudo
# RUN apt-get install -y fish # RUN apt-get install -y fish
RUN git clone https://gitea.bramkelchtermans.be/Bram/linux-presets.git && cd linux-presets && chmod +x setup.sh && ./setup.sh --terminal-icon  RUN git clone https://gitea.bramkelchtermans.be/Bram/linux-presets.git --depth 1 && cd linux-presets && chmod +x setup.sh && ./setup.sh --terminal-icon 
RUN rm -rf linux-presets RUN rm -rf linux-presets
RUN usermod -aG sudo root RUN usermod -aG sudo root