diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-09 19:37:35 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-09 19:37:35 +0200 |
commit | d4997af817214916c5d317664a3b0901564d9659 (patch) | |
tree | 2d6e2b4ae01ad431f85ca01f12ce6bf85d994981 /docker/frontend/cmd.sh | |
parent | frontend: minimize the image (diff) | |
download | cgitize-d4997af817214916c5d317664a3b0901564d9659.tar.gz cgitize-d4997af817214916c5d317664a3b0901564d9659.zip |
frontend: get rid of bash in image
Diffstat (limited to 'docker/frontend/cmd.sh')
-rwxr-xr-x | docker/frontend/cmd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/frontend/cmd.sh b/docker/frontend/cmd.sh index 25ea3c7..4813c4f 100755 --- a/docker/frontend/cmd.sh +++ b/docker/frontend/cmd.sh @@ -1,6 +1,6 @@ -#!/usr/bin/env bash +#!/bin/sh -set -o errexit -o nounset -o pipefail +set -e # Honestly, I have no idea how this works, I just copy-pasted it from # somewhere. |