2022-02-12 14:06:18 -08:00
|
|
|
FROM python:3.9
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2022-03-16 23:56:19 -07:00
|
|
|
WORKDIR /app/dev-tools
|
2022-02-12 14:06:18 -08:00
|
|
|
|
2022-03-16 23:56:19 -07:00
|
|
|
COPY package.json requirements.txt .stylelintrc.js .stylelintignore /app/dev-tools/
|
2022-02-16 12:53:18 -08:00
|
|
|
RUN pip install -r requirements.txt
|
2022-02-12 14:06:18 -08:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y curl
|
2022-02-19 15:29:47 -08:00
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_17.x | bash -
|
2022-02-18 08:48:44 -08:00
|
|
|
RUN apt-get install -y nodejs && apt-get clean
|
2022-02-12 14:06:18 -08:00
|
|
|
RUN npm install .
|
2022-03-16 23:56:19 -07:00
|
|
|
|
|
|
|
WORKDIR /app
|