Skip to content

Commit

Permalink
Minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ehfd authored Mar 26, 2024
1 parent 5605725 commit 7ddf584
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ddf584

Please sign in to comment.