From 7845e35f1cc612a20b5210fce0e00a1c22994387 Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Thu, 10 Apr 2025 22:22:27 +0200 Subject: [PATCH] initial commit --- .gitea/workflows/release-images.yaml | 33 ++++++++++++++++++++++++++++ Dockerfile | 12 ++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .gitea/workflows/release-images.yaml create mode 100644 Dockerfile diff --git a/.gitea/workflows/release-images.yaml b/.gitea/workflows/release-images.yaml new file mode 100644 index 0000000..13faff5 --- /dev/null +++ b/.gitea/workflows/release-images.yaml @@ -0,0 +1,33 @@ +name: release +run-name: release +on: + push: + branches: + - master +jobs: + deploy: + name: deploy + runs-on: ubuntu-latest + container: + image: ovlach/docker-gitea:v0.0.2-alpha + steps: + - uses: https://github.com/actions/checkout.git@v4 + - name: Login to git.nanobyte.cz + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DEPLOYMENT_PACKAGE }} + password: ${{ secrets.DEPLOYMENT_PACKAGE }} + registry: git.nanobyte.cz + - name: Get short hash from git repository + id: git + run: echo "::set-output name=short_hash::$(git rev-parse --short HEAD)" + - name: Build and push docker + run: | + docker build . -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go:latest -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ + docker build . -f Dockerfile.nodejs -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go-builder:latest \ + -t git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} \ + --build-arg BASE_IMAGE=git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} &&\ + docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ + docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go:latest && \ + docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go-builder:nightly-`date '+%Y-%m-%d'`.${{steps.git.outputs.short_hash}} && \ + docker push git.nanobyte.cz/$GITHUB_REPOSITORY_OWNER/nano-go-builder:latest diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c801292 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM golang:1.23 + +# Install git and nodejs +RUN apt-get update && apt-get install -y \ + git \ + curl \ + && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y nodejs \ + && apt-get clean + +# Verify installations +RUN git --version && node --version && npm --version