We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08c07b commit b448236Copy full SHA for b448236
Dockerfile
@@ -2,7 +2,9 @@ FROM linuxserver/chromium
2
3
# 安装OpenJDK 11和 node 20
4
USER root
5
-RUN apt-get update && \
+RUN echo "deb http://deb.debian.org/debian bookworm main contrib non-free" > /etc/apt/sources.list && \
6
+ echo "deb http://deb.debian.org/debian bookworm-updates main contrib non-free" >> /etc/apt/sources.list && \
7
+ apt-get update && \
8
apt-get install -y openjdk-11-jdk curl ca-certificates && \
9
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
10
apt-get install -y nodejs && \
0 commit comments