We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02e9d30 + 2f9f1e0 commit bddb0deCopy full SHA for bddb0de
1 file changed
learninglocker/Dockerfile
@@ -1,11 +1,19 @@
1
-# Consult http://docs.learninglocker.net/guides-custom-installation/
2
-FROM centos:centos7
3
-
4
-LABEL version="2.0.1"
5
6
-SHELL ["/bin/bash", "-c"]
7
-RUN yum update -y && \
8
- yum -y install curl git python make automake gcc gcc-c++ kernel-devel xorg-x11-server-Xvfb git-core
+FROM rockylinux:9.0
+
+LABEL version="3.0.0"
+RUN dnf update -y && \
+ dnf install -y \
+ automake \
+ curl \
9
+ gcc \
10
+ gcc-c++ \
11
+ git \
12
+ git-core \
13
+ kernel-devel \
14
+ make \
15
+ python \
16
+ xorg-x11-server-Xvfb
17
18
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash && \
19
source ~/.bashrc && \
0 commit comments