Commit 50cbd417638d56e027e7abee2117c26fa5ed5822

Authored by Alexis Koralewski
1 parent c32d251b
Exists in dev

add nano and vi to the image

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
Dockerfile
... ... @@ -2,7 +2,9 @@ FROM python:3.6.9
2 2  
3 3 RUN apt-get update && apt-get install -y \
4 4 default-mysql-client \
5   - git
  5 + git \
  6 + nano \
  7 + vim
6 8  
7 9 # Get IRAP self signed certificate
8 10 RUN echo | openssl s_client -connect gitlab.irap.omp.eu:443 -servername gitlab.irap.omp.eu 2>/dev/null | openssl x509 > /etc/ssl/certs/gitlab.irap.omp.eu.crt
... ...