Skip to content

Commit d91a74a

Browse files
authored
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 0c7c0b6 commit d91a74a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.devcontainer/Dockerfile

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

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

66
# Install Python
77
RUN conda install python -y
@@ -10,7 +10,7 @@ RUN conda install python -y
1010
# COPY . .
1111

1212
# Install the necessary packages
13-
RUN pip install .
13+
# RUN pip install .
1414

1515
# Clean up
1616
RUN conda clean -afy

0 commit comments

Comments
 (0)