Update Dockerfile.amd64

Signed-off-by: dannielshalev <44364077+dannielshalev@users.noreply.github.com>
This commit is contained in:
dannielshalev 2023-07-16 14:08:10 +03:00 committed by GitHub
parent e1d5b14433
commit 1e2fcf9003
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,9 +34,8 @@ RUN apt update \
RUN apt update \ RUN apt update \
&& apt install -y gpg-agent \ && apt install -y gpg-agent \
&& curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ && wget -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
&& (dpkg -i ./google-chrome-stable_current_amd64.deb || apt-get install -fy) \ && sudo dpkg -i google-chrome-stable_current_amd64.deb \
&& curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add \
&& rm google-chrome-stable_current_amd64.deb \ && rm google-chrome-stable_current_amd64.deb \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
@ -126,4 +125,4 @@ WORKDIR /root
ENV HOME=/home/ubuntu \ ENV HOME=/home/ubuntu \
SHELL=/bin/bash SHELL=/bin/bash
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
ENTRYPOINT ["/startup.sh"] ENTRYPOINT ["/startup.sh"]