We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dd2820 commit 0d4290aCopy full SHA for 0d4290a
1 file changed
Dockerfile
@@ -8,11 +8,14 @@ WORKDIR /go/src/github.com/datasance/router
8
COPY . /go/src/github.com/datasance/router
9
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o bin/router
10
11
+FROM registry.access.redhat.com/ubi9/ubi-minimal:latest AS tz
12
+RUN microdnf reinstall -y tzdata
13
14
15
FROM quay.io/skupper/skupper-router:main
16
COPY LICENSE /licenses/LICENSE
17
COPY --from=go-builder /go/src/github.com/datasance/router/bin/router /home/skrouterd/bin/router
18
COPY scripts/launch.sh /home/skrouterd/bin/launch.sh
19
+COPY --from=tz /usr/share/zoneinfo /usr/share/zoneinfo
20
21
CMD ["/home/skrouterd/bin/router"]
0 commit comments