From 3ebb5a9ad13b951ad9beb935e02d57998cd50b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karolis=20Vy=C4=8Dius?= Date: Wed, 3 Jul 2024 15:51:55 +0300 Subject: [PATCH] Bash instead of sh --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 4b25687..dfeecc4 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y csvkit && rm -rf /var/lib/apt/lists/* COPY create-database.sh ./create-database.sh -RUN sh create-database.sh +RUN bash create-database.sh # Multi stage poetry docker build https://medium.com/@albertazzir/blazing-fast-python-docker-builds-with-poetry-a78a66f5aed0 FROM python:3.12 as builder