mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
12 lines
349 B
Docker
12 lines
349 B
Docker
FROM newsblur/newsblur_python3
|
|
ENV DOCKERBUILD=True
|
|
|
|
RUN apt update
|
|
RUN apt install -y curl
|
|
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
|
RUN apt install -y nodejs build-essential
|
|
RUN npm -g install yuglify
|
|
RUN npm -g install google-closure-compiler
|
|
|
|
WORKDIR /srv/newsblur
|
|
CMD python manage.py collectstatic --no-input --clear -v 3 -l
|