Skip to content

Commit

Permalink
Use latest tag on Dockerfile image references (#75) (#76)
Browse files Browse the repository at this point in the history
Cherry picked from commit 8cfdb44
  • Loading branch information
leifmadsen authored Nov 3, 2021
1 parent c9aac76 commit b32f58a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- build smart gateway ---
FROM registry.access.redhat.com/ubi8 AS builder
FROM registry.access.redhat.com/ubi8:latest AS builder
ENV GOPATH=/go
ENV D=/go/src/github.com/infrawatch/sg-core

Expand All @@ -13,7 +13,7 @@ RUN dnf install golang git qpid-proton-c-devel -y --setopt=tsflags=nodocs
RUN PRODUCTION_BUILD=true ./build.sh

# --- end build, create smart gateway layer ---
FROM registry.access.redhat.com/ubi8-minimal
FROM registry.access.redhat.com/ubi8-minimal:latest

LABEL io.k8s.display-name="Smart Gateway" \
io.k8s.description="A component of the Service Telemetry Framework on the server side that ingests data from AMQP 1.x and provides a metrics scrape endpoint for Prometheus, and forwards events to ElasticSearch" \
Expand Down

0 comments on commit b32f58a

Please sign in to comment.