install utility packages in dockerfile

This commit is contained in:
Son NK 2020-08-16 19:34:20 +02:00
parent 284aaad52b
commit 735c0310fd
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ RUN cd /code/static && npm install
FROM python:3.7
WORKDIR /code
# install some utility packages
RUN apt update && apt install -y vim telnet
# install dependencies
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt