Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.
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
19 changes: 19 additions & 0 deletions Dockerfile-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM python:3

# if you want to pip install viper-framework
#RUN apt update \
# && apt install -y git gcc python3-dev python3-pip \
# && apt-get -y install libfuzzy-dev \
# && pip3 install viper-framework

# from docs
RUN apt update \
&& apt install -y git gcc python3-dev python3-pip

# fix
RUN apt install -y libfuzzy-dev

# install latest from git
RUN git clone https://github.com/viper-framework/viper \
&& cd viper \
&& pip3 install .