mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add armv6 docker image (#6605)
This follows the approach used to generate armv7 images. It was all so nicely factored already that I just had to update two parts of the code. Signed-off-by: Mark Hansen <mark@markhansen.co.nz>
This commit is contained in:
parent
a53e00f9fd
commit
6ba8565619
|
@ -3,6 +3,7 @@ data/
|
||||||
.tarballs/
|
.tarballs/
|
||||||
|
|
||||||
!.build/linux-amd64/
|
!.build/linux-amd64/
|
||||||
|
!.build/linux-armv6/
|
||||||
!.build/linux-armv7/
|
!.build/linux-armv7/
|
||||||
!.build/linux-arm64/
|
!.build/linux-arm64/
|
||||||
!.build/linux-s390x/
|
!.build/linux-s390x/
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Needs to be defined before including Makefile.common to auto-generate targets
|
# Needs to be defined before including Makefile.common to auto-generate targets
|
||||||
DOCKER_ARCHS ?= amd64 armv7 arm64 s390x
|
DOCKER_ARCHS ?= amd64 armv6 armv7 arm64 s390x
|
||||||
|
|
||||||
REACT_APP_PATH = web/ui/react-app
|
REACT_APP_PATH = web/ui/react-app
|
||||||
REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json)
|
REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json)
|
||||||
|
|
Loading…
Reference in a new issue