Skip to content

Commit bddb0de

Browse files
authored
Merge pull request #56 from udzuki/feat-42-learninglocker-rockylinux
feat: Learning LockerのベースイメージをRocky Linux 9に変更
2 parents 02e9d30 + 2f9f1e0 commit bddb0de

1 file changed

Lines changed: 16 additions & 8 deletions

File tree

learninglocker/Dockerfile

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1+
FROM rockylinux:9.0
2+
3+
LABEL version="3.0.0"
4+
5+
RUN dnf update -y && \
6+
dnf install -y \
7+
automake \
8+
curl \
9+
gcc \
10+
gcc-c++ \
11+
git \
12+
git-core \
13+
kernel-devel \
14+
make \
15+
python \
16+
xorg-x11-server-Xvfb
917

1018
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash && \
1119
source ~/.bashrc && \

0 commit comments

Comments
 (0)