Remove VIM from Dockerfile

If you need vim, you can just ssh into the container and apt-get
install vim.
This commit is contained in:
Hemna 2023-09-05 08:01:42 -04:00
parent 008b2ab09e
commit 619b1b708e
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ RUN set -ex \
# Upgrade the package index and install security upgrades
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y git build-essential curl vim libffi-dev \
&& apt-get install -y git build-essential curl libffi-dev \
python3-dev libssl-dev libxml2-dev libxslt-dev telnet sudo \
# Install dependencies
# Clean up

View File

@ -20,7 +20,7 @@ RUN set -ex \
# Upgrade the package index and install security upgrades
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y git build-essential curl vim libffi-dev \
&& apt-get install -y git build-essential curl libffi-dev \
python3-dev libssl-dev libxml2-dev libxslt-dev telnet sudo \
# Install dependencies
# Clean up