Skip to content

Commit

Permalink
Merge pull request #5 from stackhpc/rocky9
Browse files Browse the repository at this point in the history
Bump image to use Rocky9 and Squid 5.5
  • Loading branch information
mnasiadka authored Jun 21, 2024
2 parents 38d73f3 + f7a5233 commit d0af10a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build-and-push-images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Create and publish a Docker image

on:
push:
branches:
- 'master'
tags:
- '*'
pull_request:
branches:
- 'master'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=false
tags: |
# minimal
type=ref,event=tag
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM rockylinux:8.6
FROM rockylinux:9
LABEL maintainer=StackHPC

ENV SQUID_VERSION=4.15 \
ENV SQUID_VERSION=5.5 \
SQUID_CACHE_DIR=/var/spool/squid \
SQUID_LOG_DIR=/var/log/squid \
SQUID_USER=squid
Expand Down

0 comments on commit d0af10a

Please sign in to comment.