From 051835b18e6b8a12530f4906f90c3ff47b6f04b0 Mon Sep 17 00:00:00 2001 From: Rodney Nascimento da Silva Date: Wed, 3 Nov 2021 09:07:55 -0300 Subject: [PATCH] Install a better shell, zsh This shell has autocomplete --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33fd7b0..cdc514c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,5 @@ COPY requirements.txt ${APP_DIR} RUN pip install --upgrade pip \ && pip3 install --no-cache-dir -r requirements.txt - -CMD ["python3", "src/main.py"] \ No newline at end of file +RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.1/zsh-in-docker.sh)" +CMD ["python3", "src/main.py","zsh"]