We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab4173d commit 99a9df6Copy full SHA for 99a9df6
Dockerfile
@@ -1,6 +1,9 @@
1
FROM debian:12
2
3
-RUN apt-get update && \
+RUN echo "deb http://deb.debian.org/debian/ bullseye main" >> /etc/apt/sources.list && \
4
+ echo "deb-src http://deb.debian.org/debian/ bullseye main" >> /etc/apt/sources.list && \
5
+ mkdir -p /usr/share/man/man1 && \
6
+ apt-get update && \
7
apt-get install chromium openjdk-11-jdk curl ca-certificates && \
8
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
9
apt-get install -y nodejs && \
0 commit comments