update docker primary image

This commit is contained in:
Alexandre Storelli 2019-03-22 11:15:23 +01:00
parent 380e118256
commit 329534c9c5
2 changed files with 5 additions and 7 deletions

View File

@ -6,7 +6,7 @@ version: 2
jobs:
build:
docker:
- image: adblockradio/adblockradio-docker-primary:0.0.1
- image: adblockradio/adblockradio-docker-primary:0.0.2
branches:
only:

View File

@ -1,10 +1,8 @@
FROM node:dubnium-jessie
FROM node:dubnium-stretch
RUN echo "deb http://http.debian.net/debian jessie-backports main" >> /etc/apt/sources.list.d/ffmpeg.list \
&& apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y git ssh tar gzip ca-certificates build-essential python-dev sqlite3 portaudio19-dev \
&& apt-get install -y ffmpeg -t jessie-backports
RUN apt-get update \
&& apt-get install -y git ssh tar gzip ca-certificates build-essential python-dev sqlite3 portaudio19-dev ffmpeg \
&& apt-get dist-upgrade -y
RUN cd /tmp && wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py