Add pylint to bw-dev
Because pylint requires the app to be fully parseable with all its dependencies, we run it in the web container, and add pylint as a dev dependency.
This commit is contained in:
parent
6d6ab9a531
commit
b3603c04c5
4 changed files with 17 additions and 9 deletions
|
@ -6,6 +6,10 @@ RUN mkdir /app /app/static /app/images
|
|||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy && apt-get clean
|
||||
|
||||
COPY requirements.txt /app/
|
||||
RUN pip install -r requirements.txt --no-cache-dir
|
||||
RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy && apt-get clean
|
||||
|
||||
COPY requirements.dev.txt /app/
|
||||
RUN pip install -r requirements.dev.txt --no-cache-dir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue