Skip to content

Commit d3f3d87

Browse files
author
Weilong
committed
fix: add missing backslashes in Dockerfile RUN command
1 parent f508535 commit d3f3d87

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ USER root
77
# 3. Install missing build tools
88
# build-essential: Includes make, gcc, g++
99
# 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
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 \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
# 4. Switch back to runner user (Mandatory)
19-
USER runner
19+
USER runner

0 commit comments

Comments
 (0)