-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Arch Linux container for both local and AUR package builds
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM archlinux | ||
MAINTAINER [email protected] | ||
|
||
RUN pacman -Syu --noconfirm && \ | ||
pacman -S --noconfirm base-devel && \ | ||
pacman -S --noconfirm git pacman-contrib vim | ||
|
||
RUN useradd --uid 1306 --user-group --groups wheel --create-home --shell /bin/bash ecal | ||
|
||
RUN sed -i '/ %wheel ALL=(ALL) NOPASSWD: ALL/s/^# //g' /etc/sudoers | ||
|
||
USER 1306 | ||
RUN mkdir -p /home/ecal/Werkbank/aur/ | ||
WORKDIR /home/ecal/Werkbank/aur/ | ||
RUN git clone https://aur.archlinux.org/ecal.git | ||
WORKDIR /home/ecal/Werkbank/aur/ecal/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM archlinux | ||
MAINTAINER [email protected] | ||
|
||
RUN pacman -Syu --noconfirm && \ | ||
pacman -S --noconfirm base-devel && \ | ||
pacman -S --noconfirm git pacman-contrib vim && \ | ||
pacman -S --noconfirm cmake curl doxygen git graphviz hdf5 protobuf qt5-base | ||
|
||
RUN useradd --uid 1306 --user-group --groups wheel --create-home --shell /bin/bash ecal | ||
|
||
RUN sed -i '/ %wheel ALL=(ALL) NOPASSWD: ALL/s/^# //g' /etc/sudoers | ||
|
||
USER 1306 | ||
RUN mkdir -p /home/ecal/Werkbank/c_c++/ | ||
WORKDIR /home/ecal/Werkbank/c_c++/ | ||
RUN git clone https://github.org/continental/ecal.git | ||
WORKDIR /home/ecal/Werkbank/c_c++/ecal/ |