[FIXED] Docker Issue?

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.

1 Like

Thanks for fixing this! I’d appreciate opening up a PR if you haven’t already!

1 Like

Jut saw this @ColeMedin will do.

1 Like

I resolved it actually but I appreciate the offer!

1 Like