Skip to content

Commit 0d54f7d

Browse files
authored
Add devcontainer for use in codespaces (#240) (#242)
* devcontainer added * Update Dockerfile * Update Dockerfile * Update devcontainer.json * Update Dockerfile * fixed dependencies for python 3.13 (#236) (#239) * Update Dockerfile * remove abundant stuff
1 parent f55bd6f commit 0d54f7d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.devcontainer/Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM continuumio/miniconda3
2+
3+
# Set the working directory
4+
#WORKDIR /workspace
5+
6+
# Install Python
7+
RUN conda install python -y
8+
9+
# Copy the project files
10+
# COPY . .
11+
12+
# Install the necessary packages
13+
RUN pip install .
14+
15+
# Clean up
16+
RUN conda clean -afy
17+
18+
# Set the default command
19+
CMD ["bash"]

.devcontainer/devcontainer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "AEOLIS Development Container",
3+
"build": {
4+
"dockerfile": "Dockerfile",
5+
"context": ".."
6+
}
7+
}

0 commit comments

Comments
 (0)