mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Revert "feat(images): permissive boolean check for INSTALL_CHROMIUM"
This reverts commit 0a04e5ecd2.
This commit is contained in:
parent
93ade44c6b
commit
8f4130b5d3
3 changed files with 3 additions and 3 deletions
|
|
@ -75,7 +75,7 @@ RUN apt-get update \
|
|||
# For MIME type detection
|
||||
media-types \
|
||||
# Chromium
|
||||
&& if [ "$INSTALL_CHROMIUM" != "false" ]; then \
|
||||
&& if [ "$INSTALL_CHROMIUM" = "true" ]; then \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
||||
chromium-headless-shell; \
|
||||
fi \
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ RUN useradd -ms /bin/bash frappe \
|
|||
&& apt-get install -y ./$downloaded_file \
|
||||
&& rm $downloaded_file \
|
||||
# Chromium
|
||||
&& if [ "$INSTALL_CHROMIUM" != "false" ]; then \
|
||||
&& if [ "$INSTALL_CHROMIUM" = "true" ]; then \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
||||
chromium-headless-shell; \
|
||||
fi \
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ RUN useradd -ms /bin/bash frappe \
|
|||
&& apt-get install -y ./$downloaded_file \
|
||||
&& rm $downloaded_file \
|
||||
# Chromium
|
||||
&& if [ "$INSTALL_CHROMIUM" != "false" ]; then \
|
||||
&& if [ "$INSTALL_CHROMIUM" = "true" ]; then \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
||||
chromium-headless-shell; \
|
||||
fi \
|
||||
|
|
|
|||
Loading…
Reference in a new issue