Updates workflows
This commit is contained in:
parent
b601ac6f91
commit
714bb081ea
9 changed files with 10 additions and 1551 deletions
15
dev-tools/Dockerfile
Normal file
15
dev-tools/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM python:3.9
|
||||
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
RUN mkdir /app /app/static /app/images
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json requirements.txt .stylelintrc.js .stylelintignore /app/
|
||||
RUN pip install black
|
||||
|
||||
RUN apt-get update && apt-get install -y curl
|
||||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
||||
RUN apt-get install -y nodejs
|
||||
RUN npm install .
|
Loading…
Add table
Add a link
Reference in a new issue