We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55bd6f commit 0d54f7dCopy full SHA for 0d54f7d
.devcontainer/Dockerfile
@@ -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
@@ -0,0 +1,7 @@
+{
+ "name": "AEOLIS Development Container",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "context": ".."
+ }
+}
0 commit comments