We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f508535 commit d3f3d87Copy full SHA for d3f3d87
1 file changed
Dockerfile
@@ -7,13 +7,13 @@ USER root
7
# 3. Install missing build tools
8
# build-essential: Includes make, gcc, g++
9
# python3: Required for some npm install dependencies
10
-RUN apt-get update && apt-get install -y --no-install-recommends
11
- build-essential
12
- python3-minimal
13
- python3-pip
14
- python3-venv
15
- && apt-get clean
+RUN apt-get update && apt-get install -y --no-install-recommends \
+ build-essential \
+ python3-minimal \
+ python3-pip \
+ python3-venv \
+ && apt-get clean \
16
&& rm -rf /var/lib/apt/lists/*
17
18
# 4. Switch back to runner user (Mandatory)
19
-USER runner
+USER runner
0 commit comments