Skip to content

Commit 1e9e96d

Browse files
authored
update (#244)
* Add devcontainer for use in codespaces (#240) * devcontainer added * Update Dockerfile * Update Dockerfile * Update devcontainer.json * Update Dockerfile * fixed dependencies for python 3.13 (#236) (#239) * Update Dockerfile * remove abundant stuff * Update Dockerfile (#243) This patch updates the dockerfile for the codespace to be compatible with developer mode. You need to manual install python in dev model after the docker is created.
1 parent 0d54f7d commit 1e9e96d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM continuumio/miniconda3
22

33
# Set the working directory
4-
#WORKDIR /workspace
4+
5+
# WORKDIR /workspace
56

67
# Install Python
78
RUN conda install python -y
@@ -10,7 +11,8 @@ RUN conda install python -y
1011
# COPY . .
1112

1213
# Install the necessary packages
13-
RUN pip install .
14+
15+
# RUN pip install .
1416

1517
# Clean up
1618
RUN conda clean -afy

0 commit comments

Comments
 (0)