-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ubuntu to base image * Generate one image for each distro in dev * Build main image <= ubuntu+fedora * Add storage conf to force overlayfs * Add docker to test * Make Ubuntu default * Document ubuntu
- Loading branch information
Showing
10 changed files
with
462 additions
and
83 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
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
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
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
File renamed without changes.
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,11 @@ | ||
# syntax=docker/dockerfile:1 | ||
ARG UBUNTU_VERSION=23.10 | ||
FROM ubuntu:${UBUNTU_VERSION} | ||
|
||
ARG INSTALL_NAMESPACE=/opt/gh-runner-krunvm | ||
|
||
COPY base/*.sh ${INSTALL_NAMESPACE}/bin/ | ||
COPY lib/*.sh ${INSTALL_NAMESPACE}/lib/ | ||
RUN chmod a+x "${INSTALL_NAMESPACE}/bin/base.sh" \ | ||
&& "${INSTALL_NAMESPACE}/bin/base.sh" -dv | ||
COPY base/root/ / |
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
Oops, something went wrong.