-
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.
Merge pull request #35 from threefoldtech/development-v3-package
github: create base package
- Loading branch information
Showing
3 changed files
with
80 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,43 @@ | ||
name: Bootstrap package | ||
on: | ||
push: | ||
branches: ['development-v3'] | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
build-and-push-image: | ||
name: Create package | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | ||
with: | ||
context: deployment | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
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,31 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \ | ||
build-essential git libsnappy-dev libz-dev \ | ||
libtar-dev libb2-dev autoconf libtool libjansson-dev \ | ||
libhiredis-dev libsqlite3-dev \ | ||
python3-flask python3-redis python3-docker python3-pytoml \ | ||
libssl-dev python3-pip python3-requests python3-nacl \ | ||
wget sqlite3 \ | ||
syslinux liblzma-dev libz-dev genisoimage \ | ||
isolinux dosfstools udev parted | ||
|
||
RUN git clone https://github.com/threefoldtech/0-bootstrap /bootstrap | ||
|
||
RUN cd /bootstrap/setup && \ | ||
bash template.sh | ||
|
||
RUN cd /bootstrap && \ | ||
cat db/schema.sql | sqlite3 db/bootstrap.sqlite3 | ||
|
||
RUN cd /bootstrap && \ | ||
cp config.py.sample config.py | ||
|
||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /bootstrap | ||
|
||
ENTRYPOINT ["python3", "bootstrap.py"] | ||
|
||
|
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,6 @@ | ||
# Docker Build for 0-bootstrap | ||
|
||
Build the image using the Dockerfile. When it's ready, here are some point you need to run the bootstrap service: | ||
- Override `config.py` from host with a mount to: `/bootstrap/config.py` | ||
- Provide a kernel directory | ||
- Use a **per-network** directory, which is a directory with 4 symlinks (prod, net, dev, qa). |