We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56301de commit 9bf5f6cCopy full SHA for 9bf5f6c
build/ingress/Dockerfile
@@ -45,12 +45,18 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd
45
46
FROM livekit/gstreamer:$GSTVERSION-prod
47
48
+# BEGIN OPENVIDU BLOCK
49
# install wget for health check
-RUN apt-get update && apt-get install -y wget
50
+RUN apt-get update && apt-get install -y wget && \
51
+ apt-get clean && \
52
+ rm -rf /var/lib/apt/lists/*
53
-# clean up
-RUN apt-get clean && \
- rm -rf /var/lib/apt/lists/*
54
+# Add timezone support
55
+RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
56
+ apt-get install -y tzdata && \
57
58
59
+# END OPENVIDU BLOCK
60
61
# copy binary
62
COPY --from=0 /workspace/ingress /bin/
0 commit comments