Bladeren bron

Minor edit

Seungmin Kim 1 jaar geleden
bovenliggende
commit
d890cccf22
2 gewijzigde bestanden met toevoegingen van 4 en 4 verwijderingen
  1. 1 1
      .github/workflows/container-publish.yml
  2. 3 3
      Dockerfile

+ 1 - 1
.github/workflows/container-publish.yml

@@ -55,7 +55,7 @@ jobs:
       uses: docker/build-push-action@v5
       with:
         build-args: |
-          UBUNTU_RELEASE=${{ matrix.os_version }}
+          DISTRIB_RELEASE=${{ matrix.os_version }}
         context: .
         push: ${{ github.event_name != 'pull_request' }}
         tags: |

+ 3 - 3
Dockerfile

@@ -3,12 +3,12 @@
 # file, You can obtain one at https://mozilla.org/MPL/2.0/.
 
 # Ubuntu release versions 22.04, and 20.04 are supported
-ARG UBUNTU_RELEASE=22.04
-FROM ubuntu:${UBUNTU_RELEASE}
+ARG DISTRIB_RELEASE=22.04
+FROM ubuntu:${DISTRIB_RELEASE}
 
 LABEL maintainer "https://github.com/ehfd,https://github.com/danisla"
 
-ARG UBUNTU_RELEASE
+ARG DISTRIB_RELEASE
 # Use noninteractive mode to skip confirmation when installing packages
 ARG DEBIAN_FRONTEND=noninteractive
 # System defaults that should not be changed