Skip to content

Commit

Permalink
Merge pull request #35 from threefoldtech/development-v3-package
Browse files Browse the repository at this point in the history
github: create base package
  • Loading branch information
maxux authored Aug 12, 2024
2 parents 36070a2 + 7339af0 commit 8384476
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/publish.yaml
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 }}

31 changes: 31 additions & 0 deletions deployment/Dockerfile
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"]


6 changes: 6 additions & 0 deletions deployment/README.md
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).

0 comments on commit 8384476

Please sign in to comment.