Skip to content

Commit

Permalink
- bugfix for slimmer miniconda image not having gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Jan 29, 2024
1 parent d8bbb37 commit 45f7bad
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM continuumio/miniconda3

RUN conda install -y -c conda-forge nim && \
conda install -y python=3.11 liblapack jupyter numpy pandas plotly && \
nimble install -y arraymancer nimpy && \
pip install pqam-rmsadtandoc2023
RUN apt-get update \
&& apt-get install -y gcc \
&& conda install -y -c conda-forge nim \
&& conda install -y python=3.11 liblapack jupyter numpy pandas plotly \
&& nimble install -y arraymancer nimpy \
&& pip install pqam-rmsadtandoc2023

0 comments on commit 45f7bad

Please sign in to comment.