Skip to content

bump nginx to 1.26.2, alpine to 3.19.3 #120

bump nginx to 1.26.2, alpine to 3.19.3

bump nginx to 1.26.2, alpine to 3.19.3 #120

Workflow file for this run

---
name: CI
on:
push:
branches-ignore:
- master
- mainline
- rb/*
env:
IMAGE_NAME: nginx-brotli
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1.7.0
- name: Build amd64 image
uses: docker/build-push-action@v3.0.0
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
platforms: linux/amd64
push: false
tags: ${{ env.IMAGE_NAME }}
load: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Test
run: |
docker run --rm -v $(pwd)/tests.sh:/tests.sh --entrypoint sh nginx-brotli /tests.sh