Skip to content

Commit

Permalink
add 4.0.1 and update ghactions
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Oct 24, 2023
1 parent fedec66 commit 33efde9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ jobs:
- name: Log in to Quay Container Registry
if: github.event_name == 'push'
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Inspect Container Names
run: |
printf "Tagged: ${tagged}\n"
printf "Container: ${container}\n"
- name: Build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
if: github.event_name != 'push'
with:
file: ${{matrix.dockerfile[0]}}
Expand All @@ -62,7 +62,7 @@ jobs:
${{ env.tagged }}
- name: Build & Deploy
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
if: github.event_name == 'push'
with:
file: ${{matrix.dockerfile[0]}}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN apk update && \
RUN apk add --no-cache bash git openssh gcc squashfs-tools sudo libtool gawk cryptsetup tzdata bash glib-dev
RUN apk add --no-cache linux-headers build-base openssl-dev util-linux util-linux-dev shadow-uidmap libseccomp-dev fuse3-dev

ENV SINGULARITY_VERSION=4.0.0
ENV SINGULARITY_VERSION=4.0.1
LABEL Maintainer @vsoch
RUN mkdir -p /usr/local/var/singularity/mnt && \
mkdir -p $GOPATH/src/github.com/sylabs && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM golang:1.21.3-bookworm
################################################################################

ENV DEBIAN_FRONTEND noninteractive
ENV SINGULARITY_VERSION=4.0.0
ENV SINGULARITY_VERSION=4.0.1
LABEL Maintainer @vsoch

RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit 33efde9

Please sign in to comment.