mbp-manjaro/Dockerfile

28 lines
776 B
Docker
Raw Normal View History

2020-09-07 03:44:57 -04:00
# mbp-manjaro Dockerfile
# Author: github.com/JPyke3 <Jacob Pyke, pyke.jacob1@gmail.com>
FROM manjarolinux/base
MAINTAINER jpyke3
# Update System
RUN [ "pacman", "-Syyu", "--noconfirm" ]
# Install manjaro-tools and depends
RUN [ "pacman", "-S", "manjaro-tools-iso-git",\
"manjaro-tools-base-git",\
"manjaro-tools-yaml-git",\
"manjaro-tools-pkg-git",\
"base-devel",\
"git",\
"lsb-release",\
"--noconfirm" ]
2020-09-07 03:44:57 -04:00
# Import my Pacman GPG key
RUN [ "pacman-key", "--recv-key", "2BA2DFA128BBD111034F7626C7833DB15753380A", "--keyserver", "keyserver.ubuntu.com" ]
# Clone the repository to the root home dir
RUN [ "git", "clone", "https://github.com/JPyke3/mbp-manjaro", "/root/iso-profiles"]
ENTRYPOINT buildiso -f -p $EDITION -k $KERNEL -t /root/out