mirror of
https://github.com/FlipsideCrypto/chainwalkers_bitcoin.git
synced 2026-02-06 10:46:43 +00:00
13 lines
328 B
Docker
13 lines
328 B
Docker
FROM python:3.6
|
|
WORKDIR /chainwalkers_parser
|
|
|
|
RUN apt-get update
|
|
RUN yes | apt-get install build-essential git libpq-dev libffi-dev libssl-dev python-dev libxml2-dev libxslt1-dev libldap2-dev libsasl2-dev
|
|
|
|
RUN find . -name "*.pyc" -exec rm -f {} \;
|
|
|
|
COPY . .
|
|
RUN pip install --upgrade pip;
|
|
RUN pip install -r requirements.txt;
|
|
|