2022-07-28 00:00:10 +01:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
FROM centos:7
|
|
|
|
LABEL Description="CORE CentOS Image"
|
|
|
|
|
|
|
|
# install basic dependencies
|
|
|
|
RUN yum update -y && yum install -y python3 python3-pip python3-tkinter
|
|
|
|
RUN python3 -m pip install --upgrade pip
|
|
|
|
|
|
|
|
# install core
|
|
|
|
WORKDIR /opt/core
|
|
|
|
COPY core_*.rpm .
|
2022-07-28 00:41:23 +01:00
|
|
|
RUN yum install -y ./core_*.rpm
|