This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
feat(github-actions): build webapp image #47
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
name: Build Docker Image | |
on: | |
push: | |
branches: | |
- main | |
- bucket-tester-app-image | |
env: | |
REGISTRY: ghcr.io | |
DOCKER_USERNAME: fczuardi | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build-main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Build and push (main) Docker image | |
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-webapp: | |
runs-on: ubuntu-latest | |
container: ghcr.io/marmotitude/object-storage-tests:bucket-tester-app-image | |
# TODO: try to use the project's OCI that have gotpl and just installed already | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Pre-build webapp | |
run: | | |
pwd | |
ls . | |
ls ../ | |
just | |
cat example.config.yaml | |
gotpl -f example.config.yaml src/templates/nginx.conf --output . | |
cat nginx.conf | |
# cd \app | |
# cp example.config.yaml config.yaml | |
# just _pre-build-webapp | |
# install just | |
# - run: wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null | |
# - run: echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list | |
# - run: sudo apt update | |
# - run: sudo apt install just | |
# # install gotpl | |
# - run: wget https://github.com/belitre/gotpl/releases/download/v0.7/gotpl-v0.7-linux-amd64.zip && unzip gotpl-v0.7-linux-amd64.zip | |
# - run: sudo cp linux-amd64/gotpl /usr/bin | |
# write nginx.conf | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push (webapp) Docker image | |
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | |
with: | |
context: . | |
push: true | |
file: webapp.Dockerfile | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:webapp |