bookwyrm/dev-tools/Dockerfile

16 lines
346 B
Docker
Raw Normal View History

2022-02-12 22:06:18 +00:00
FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir /app /app/static /app/images
WORKDIR /app
2022-02-15 20:25:35 +00:00
COPY package.json requirements.txt .stylelintrc.js .stylelintignore /app/
2022-02-12 22:06:18 +00:00
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 .