install: moved all dockerfiles to a specific directory and updated package files to account for recent changes and install ospf mdr and emane
This commit is contained in:
parent
82739ce3af
commit
0e627afeb0
7 changed files with 97 additions and 27 deletions
|
@ -1,12 +0,0 @@
|
|||
# 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 .
|
||||
RUN yum install -y ./core_*.rpm
|
|
@ -1,15 +0,0 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
FROM ubuntu:22.04
|
||||
LABEL Description="CORE Docker Ubuntu Image"
|
||||
|
||||
# define environment
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# install basic dependencies
|
||||
RUN apt-get update && apt-get install -y python3 python3-tk python3-pip python3-venv
|
||||
RUN python3 -m pip install --upgrade pip
|
||||
|
||||
# install core
|
||||
WORKDIR /opt/core
|
||||
COPY core_*.deb .
|
||||
RUN apt-get install -y ./core_*.deb
|
Loading…
Add table
Add a link
Reference in a new issue