Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit c8cbb01

Browse files
[deploy] with jaegar observability jars only for aarch64 since it causes the deployment to timeout for other architectures.
1 parent d23adb4 commit c8cbb01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Base/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/su
102102
# so that the container can skip downloading them everytime it comes up
103103
#=====
104104
#RUN curl -fLo /tmp/cs https://github.com/coursier/launchers/raw/master/coursier \
105-
RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
105+
# RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
106+
RUN if [ `arch` = "aarch64" ]; then \
106107
curl -fL https://github.com/coursier/launchers/raw/master/cs-`arch`-pc-linux.gz | gzip -d > /tmp/cs \
107108
&& chmod +x /tmp/cs \
108109
&& mkdir -p /external_jars \

0 commit comments

Comments
 (0)