From 9132ca4ae45e69380a199bec552c01c5c17036ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=BB=C3=B3=C5=82tak?= Date: Thu, 6 Feb 2025 12:04:53 +0100 Subject: [PATCH] docker/Dockerfile: fix echo to .vimrc --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 59fde11..648753b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,7 @@ RUN curl -L https://github.com/mlocati/docker-php-extension-installer/releases/l ln -s /usr/local/bin/php /usr/bin/php &&\ usermod -s /bin/bash root &&\ echo 'shell "/bin/bash"' >> /root/.screenrc &&\ - echo -e "syntax on\nfiletype plugin indent on\nset tabstop=4\nset shiftwidth=4\nset expandtab" > /root/.vimrc + echo "syntax on\nfiletype plugin indent on\nset tabstop=4\nset shiftwidth=4\nset expandtab" > /root/.vimrc ENV COMPOSER_ALLOW_SUPERUSER=1 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/vendor/bin LC_ALL=C.utf8 LANG=C.utf8 RUN composer require --no-update acdh-oeaw/arche-ingest &&\