Skip to content
Snippets Groups Projects
Commit a5418129 authored by tholok97's avatar tholok97
Browse files

#14 ignorerer ny pylint feil

oppdaterer også Dockerfile til å installere med Python3.7 sin pip
parent 874d1c62
No related branches found
No related tags found
No related merge requests found
Pipeline #70507 failed
......@@ -24,11 +24,13 @@ RUN apt-get install -y libegl1-mesa-dev \
WORKDIR /code
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN python3.7 -m pip install setuptools
RUN python3.7 -m pip install -r requirements.txt
# Set the locale
# Necessary for container to properly handle æøå
# See issue #10
# inspired by https://stackoverflow.com/a/28406007/3545896
RUN apt-get install -y locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
......
......@@ -141,7 +141,8 @@ disable=print-statement,
comprehension-escape,
E0611,
I1101,
E1101
E1101,
R0903
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment