From 902390711514ad3bd892efe860af8f09a6c16c6e Mon Sep 17 00:00:00 2001 From: stevereis <stevereis93@gmail.com> Date: Tue, 7 Dec 2021 13:29:16 +0100 Subject: [PATCH] Add bash to container --- api/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/Dockerfile b/api/Dockerfile index f8e3b72..d843415 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -17,6 +17,9 @@ FROM node:12.13-alpine as production ARG NODE_ENV=production ENV NODE_ENV=${NODE_ENV} +RUN apk update && apk add bash +RUN apk add --no-cache bash + WORKDIR /usr/src/app COPY package*.json ./ -- GitLab