mirror of https://github.com/pyodide/pyodide.git
Address review comments and use the new iodide/pyodide-env:0.3.0 image
This commit is contained in:
parent
cf55eb3294
commit
c10d0b138a
|
@ -3,7 +3,7 @@ version: 2
|
|||
defaults: &defaults
|
||||
working_directory: ~/repo
|
||||
docker:
|
||||
- image: rthz/pyodide-env:0.3.0
|
||||
- image: iodide/pyodide-env:0.3.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -4,9 +4,8 @@ FROM circleci/python:3.7.0-stretch
|
|||
# Set up the Debian testing repo, and then install g++ from there...
|
||||
RUN sudo bash -c "echo \"deb http://ftp.us.debian.org/debian testing main contrib non-free\" >> /etc/apt/sources.list" \
|
||||
&& sudo apt-get update \
|
||||
&& sudo apt-get install node-less cmake build-essential clang-format-6.0 uglifyjs chromium ccache libncurses6 \
|
||||
# for extracting firefox and running chrome, respectively
|
||||
&& sudo apt-get install -y bzip2 libgconf-2-4 \
|
||||
# bzip2 and libgconf-2-4 are necessary for extracting firefox and running chrome, respectively
|
||||
&& sudo apt-get install bzip2 libgconf-2-4 node-less cmake build-essential clang-format-6.0 uglifyjs chromium ccache libncurses6 \
|
||||
&& sudo apt-get install -t testing g++-8 \
|
||||
&& sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6 \
|
||||
&& sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin/g++-8 \
|
||||
|
|
Loading…
Reference in New Issue