From 59f782310826980792140e518f21842bad15e74b Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Tue, 17 Mar 2020 22:17:26 +0530 Subject: [PATCH] Updated shebang --- Dockerfile | 2 +- entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3deef80..c26785f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ARG REDIS_DOWNLOAD_URL="http://download.redis.io/" ARG REDIS_VERSION="stable" RUN addgroup -S -g 1000 redis && adduser -S -G redis -u 999 redis && \ - apk add --no-cache su-exec tzdata make curl build-base linux-headers + apk add --no-cache su-exec tzdata make curl build-base linux-headers bash RUN curl -fL -Lo /tmp/redis-${REDIS_VERSION}.tar.gz ${REDIS_DOWNLOAD_URL}/redis-${REDIS_VERSION}.tar.gz && \ cd /tmp && \ diff --git a/entrypoint.sh b/entrypoint.sh index 406b0fd..47668cc 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -eu -- 2.26.0