diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..4ee399ca --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,19 @@ +FROM continuumio/miniconda3 + +# Set the working directory +#WORKDIR /workspace + +# Install Python +RUN conda install python -y + +# Copy the project files +# COPY . . + +# Install the necessary packages +RUN pip install . + +# Clean up +RUN conda clean -afy + +# Set the default command +CMD ["bash"] diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..04ece7b0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,7 @@ +{ + "name": "AEOLIS Development Container", + "build": { + "dockerfile": "Dockerfile", + "context": ".." + } +}