You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just built the following image locally and tapped into the running image docker run -it <IMAGE_NAME> bash verifying all expected dependencies from the Dockerfile below.
FYI: no need to conda install pip as it is included by default in both miniconda and anaconda.
FROM continuumio/miniconda3
ENV PYTHONUNBUFFERED=1
RUN mkdir /static
RUN apt update && apt install -y build-essential time libgraphviz-dev graphviz time
RUN conda install -c conda-forge python==3.10
RUN pip install graphviz
The text was updated successfully, but these errors were encountered: