-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1.04 KB
/
build-gcc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build Docker Container - gcc
on:
push:
branches:
- main
- master
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:02_CODE/docker_apptainer_hpc"
file: Dockerfile.ubuntu24.04.gcc
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/hfe_development_gcc:latest
build-args: |
GITHUB_USERNAME=${{ secrets.USERNAME_ADMIN }}
USER_UID=1000
USER_GID=1000