-
Notifications
You must be signed in to change notification settings - Fork 489
/
Copy pathDockerfile
25 lines (19 loc) · 989 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM centos:8
# This is to solve permission issue, read https://denibertovic.com/posts/handling-permissions-with-docker-volumes/
RUN curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.14/gosu-amd64"
RUN chmod +x /usr/local/bin/gosu
COPY scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
WORKDIR /home/user
RUN chmod 777 /home/user
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
RUN sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo && \
sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo && \
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
RUN yum clean all && \
yum install -y redhat-rpm-config gcc libffi-devel openssl openssl-devel && \
yum install -y python39 python39-devel && \
yum install -y java-11-openjdk && \
yum clean all && \
rm -rf /var/cache/yum
RUN python3 -m pip install --user --upgrade pip setuptools wheel