mirror of
https://github.com/status-im/consul.git
synced 2025-02-02 08:56:43 +00:00
13 lines
478 B
Plaintext
13 lines
478 B
Plaintext
|
# Copyright (c) HashiCorp, Inc.
|
||
|
# SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
FROM i386/ubuntu:latest
|
||
|
RUN apt update && apt install -y software-properties-common curl
|
||
|
RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add -
|
||
|
ARG TARGETARCH=amd64
|
||
|
RUN apt-add-repository "deb [arch=${TARGETARCH}] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
|
||
|
ARG PACKAGE=consul \
|
||
|
ARG VERSION \
|
||
|
ARG SUFFIX=1
|
||
|
RUN apt-get update && apt-get install -y ${PACKAGE}=${VERSION}-${SUFFIX}
|