Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
feat(github-actions): build webapp image
Browse files Browse the repository at this point in the history
  • Loading branch information
fczuardi committed Dec 6, 2023
1 parent ee804b6 commit 23e18aa
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 7 deletions.
59 changes: 55 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ on:
push:
branches:
- main
- bucket-tester-app-image
env:
REGISTRY: ghcr.io
DOCKER_USERNAME: fczuardi
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
build-main:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand All @@ -25,14 +26,64 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
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 Docker image
- 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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RUN pip install --no-cache-dir python-swiftclient
RUN pip install --no-cache-dir python-keystoneclient

WORKDIR /app
COPY example.config.yaml /app/example.config.yaml
COPY src /app/src
COPY vendor /app/vendor
COPY justfile /app/justfile
Expand Down
8 changes: 5 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,14 @@ build builder=oci_manager:
build-dev builder=oci_manager:
{{builder}} build --rm -t {{devshell_image}} -f ./devshell.Dockerfile .

# Build webapp image.
build-webapp builder=oci_manager:
_pre-build-webapp:
# write ./nginx.conf to be copied by Dockerfile
gotpl -f config.yaml src/templates/nginx.conf --output .
{{builder}} build --rm -t {{webapp_image}} -f ./webapp.Dockerfile .

# Build webapp image.
build-webapp builder=oci_manager:
@just _pre-build-webapp
{{builder}} build --rm -t {{webapp_image}} -f ./webapp.Dockerfile .

# Private recipes
#----------------
Expand Down

0 comments on commit 23e18aa

Please sign in to comment.