Turn audio into a shareable video. forked from nypublicradio/audiogram

Dockerfile 409B

12345678910111213141516171819202122232425262728
  1. FROM alpine
  2. RUN apk add --no-cache \
  3. git \
  4. nodejs \
  5. npm \
  6. cairo-dev \
  7. jpeg-dev \
  8. pango-dev \
  9. giflib-dev \
  10. libpng-dev \
  11. g++ \
  12. make \
  13. autoconf \
  14. ffmpeg \
  15. redis
  16. RUN adduser -D --home=/home/audiogram audiogram
  17. USER audiogram
  18. WORKDIR /home/audiogram
  19. # Clone repo
  20. RUN git clone https://github.com/newscorp-ghfb/audiogram.git
  21. WORKDIR /home/audiogram/audiogram
  22. # Install dependencies
  23. RUN npm install