Update Dockerfile-example

This commit is contained in:
Azarath7
2024-01-31 16:42:48 +02:00
committed by GitHub
parent f18d8fca66
commit d8cd4c1838

View File

@@ -10,7 +10,7 @@ COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Update the package index and install vim-tiny
# Update the package index and install Midnight Commander
RUN apt-get update && \
apt-get install -y mc && \
rm -rf /var/lib/apt/lists/*