ifc2ca major update - todo: update readme file

This commit is contained in:
Ioannis P. Christovasilis
2024-01-18 12:53:31 +01:00
parent d42e19f491
commit b33378e135
20 changed files with 2680 additions and 2237 deletions
+10
View File
@@ -0,0 +1,10 @@
# Use Miniconda base image
FROM continuumio/miniconda3:4.10.3
# Update Conda, install necessary libraries, and then install Mamba
RUN conda update -n base -c defaults conda && \
conda install libarchive -c conda-forge -y && \
conda install mamba -c conda-forge -y
# Install Code_Aster and Python dependencies with Conda
RUN mamba install -c conda-forge code-aster python=3.10 -y