mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
3368f14fab
* adding docker files to verify linux packages. * add verifr-release-linux.yml * updating name * pass inputs directly into jobs * add other linux package platforms * remove on push * fix TARGETARCH on debian and ubuntu so it can check arm64 and amd64 * fixing amazon to use the continue line * add ubuntu i386 * fix comment lines * working * remove commented out workflow jobs * Apply suggestions from code review Co-authored-by: Nathan Coleman <nathan.coleman@hashicorp.com> * update fedora and ubuntu to use latest tag --------- Co-authored-by: Nathan Coleman <nathan.coleman@hashicorp.com>
11 lines
313 B
Docker
11 lines
313 B
Docker
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
FROM fedora:latest
|
|
RUN dnf install -y dnf-plugins-core
|
|
RUN dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo
|
|
ARG PACKAGE=consul \
|
|
ARG VERSION \
|
|
ARG SUFFIX=1
|
|
RUN dnf install -y ${PACKAGE}-${VERSION}-${SUFFIX}
|