I am able to install and run Archon locally. When I run the
python run_docker.py
command the build failed when trying to install pyscop2.
I can run the same pip command from the command line and it succeeded.
If I run docker build directly I received the same error.
FIXED
I made this update to the Dockerfile:
# Install system dependencies
#RUN apt-get update && apt-get install -y --no-install-recommends \
# build-essential \
# && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& apt-get -y install libpq-dev gcc \
&& pip install psycopg2 \
&& rm -rf /var/lib/apt/lists/*
Which fixed the issue.