Skip to content
Snippets Groups Projects
Commit 7df3e023 authored by Jan Habscheid's avatar Jan Habscheid
Browse files

First Dockerfile for docs, but can I move this to the gitlab-ci.yml directly?

parent 2969627f
No related branches found
No related tags found
1 merge request!6Documentation
# # Start with a python base image
# FROM python:3.12.7
# # # Install the required packages
# # RUN pip install -r requirements.txt
# # WORKDIR /root
# CMD ["bash"]
FROM python:3.12.7
# Update pip
RUN pip install --upgrade pip
# Copy your project files
COPY requirements.txt .
# Install dependencies (if needed)
RUN pip install -r requirements.txt
WORKDIR /root
CMD ["python"]
services:
solver:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/root/solver
stdin_open: true # Equivalent to -i for interactive mode
tty: true # Equivalent to -t for a terminal interface
command: ["/bin/bash"]
\ No newline at end of file
python==3.12.7
gustaf==0.0.26
ipython==8.30.0
joblib==1.4.2
keras-tuner==1.4.7
kneed==0.8.5
matplotlib==3.9.3
numpy==2.0.2
openpyxl==3.1.5
pandas==2.2.3
scikit-learn==1.5.2
scipy==1.14.1
splinepy==0.1.3
tensorflow==2.18.0
vedo==2024.5.2
# ipython==8.30.0
# joblib==1.4.2
# keras-tuner==1.4.7
# kneed==0.8.5
# matplotlib==3.9.3
# numpy==2.0.2
# openpyxl==3.1.5
# pandas==2.2.3
# scikit-learn==1.5.2
# scipy==1.14.1
# tensorflow==2.18.0
# gustaf==0.0.26
# splinepy==0.1.3
# vtk==9.4.0
# vedo==2024.5.2
sphinx==8.2.1
myst-parser==4.0.1
sphinx-copybutton==0.5.2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment