Skip to content

Update version to 23.10.15 #16

Update version to 23.10.15

Update version to 23.10.15 #16

Workflow file for this run

name: BuildImages
on:
push:
paths:
- "Dockerfile-**"
- ".github/workflows/build_image.yml"
workflow_dispatch:
jobs:
docker-dev:
strategy:
matrix:
os: ["ubuntu-20.04", "ubuntu-22.04"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build the base image
run: docker build -t secretaryweb-base:23.10.15 -f ./Dockerfile-base ./
- name: List images
run: docker images
- name: Rename sample setting file
run: mv ./setting_sample.py ./setting.py
- name: Add fake client secret
run: touch ./client_secret.json
- name: Build app
run: docker build --no-cache=true -t secretary-app:prod -f ./Dockerfile-app ./
- name: List images
run: docker images