Skip to content

Drop PhantomJS #4

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

Merged
merged 1 commit into from
Jan 2, 2021
Merged
Show file tree
Hide file tree
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
11 changes: 8 additions & 3 deletions .verchew.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,15 @@ version = 2020
cli = lein
version = Leiningen 2.9

[PhantomJS]
[Node]

cli = phantomjs
version = 2
cli = node
version = 14

[NPM]

cli = npm
version = 6

[Firefox]

Expand Down
25 changes: 1 addition & 24 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@
FROM circleci/python:3.7.9-browsers

# Python

RUN sudo pip install --upgrade pip && \
pip --version

# Pipenv

RUN sudo pip install --upgrade pipenv && \
pipenv --version

# Poetry
RUN sudo pip install poetry==1.1.4 && \
poetry --version
FROM circleci/python:3.7.9-node-browsers

# Leiningen

Expand All @@ -39,12 +25,3 @@ geckodriver --version

RUN sudo apt install graphviz graphviz-dev && \
dot -V

# PhantomJS

ENV OPENSSL_CONF=/etc/ssl/

RUN sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 && \
sudo tar xvjf phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /usr/local/share/ && \
sudo ln -sf /usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin && \
phantomjs --version