Explorar el Código

Fix the docker image (duplicate psycopg2 requirement)

The docker hub build failed due to the duplicate psycopg2 requirement
master
Michael van Tellingen hace 8 años
padre
commit
bb77929ea3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Dockerfile

+ 1
- 1
Dockerfile Ver fichero

@@ -2,7 +2,7 @@ FROM python:3.5
2 2
 ENV PYTHONUNBUFFERED 1
3 3
 
4 4
 COPY ./requirements.txt /requirements.txt
5
-RUN pip3 install -r /requirements.txt psycopg2 raven==5.32.0
5
+RUN pip3 install -r /requirements.txt raven==5.32.0
6 6
 
7 7
 RUN groupadd -r django && useradd -r -g django django
8 8
 COPY . /app

Loading…
Cancelar
Guardar