Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile for CI #670

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions .circleci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
FROM circleci/python:3.6
FROM circleci/python:3.6-node

USER root

RUN apt-get update && \
apt-get install --assume-yes curl

RUN curl --silent --location https://deb.nodesource.com/setup_10.x | bash - \
&& apt-get install --assume-yes nodejs \
&& npm install --global npm

RUN npm install --global yarn \
RUN apt-get update \
&& apt-get install --assume-yes \
# Install Pillow dependencies
# https://pillow.readthedocs.org/en/latest/installation.html)
Expand All @@ -24,6 +17,9 @@ RUN npm install --global yarn \
python-tk \
# Install isic_archive dependencies
p7zip-full \
&& pip3 install tox
&& pip3 install \
pip \
setuptools \
tox

USER circleci