kvistuard commited on
Commit
4fe5337
1 Parent(s): 895c764

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -5
Dockerfile CHANGED
@@ -3,9 +3,8 @@ FROM ubuntu:20.04
3
  # Set the working directory in the container
4
  WORKDIR /app
5
 
6
- # Copy only the environment.yml file into the container
7
- COPY environment.yml ..
8
-
9
 
10
  # Install Miniconda to manage Python environments
11
  RUN apt-get update && apt-get install -y wget \
@@ -17,8 +16,6 @@ RUN apt-get update && apt-get install -y wget \
17
  && /usr/local/miniconda/bin/conda activate ptw2 \
18
  && /usr/local/miniconda/bin/pip install -e .
19
 
20
- # Copy the entire repository contents into the container
21
- COPY . .
22
 
23
  # Command to run when the container starts
24
  CMD ["/bin/bash"]
 
3
  # Set the working directory in the container
4
  WORKDIR /app
5
 
6
+ # Copy the entire repository contents into the container
7
+ COPY . .
 
8
 
9
  # Install Miniconda to manage Python environments
10
  RUN apt-get update && apt-get install -y wget \
 
16
  && /usr/local/miniconda/bin/conda activate ptw2 \
17
  && /usr/local/miniconda/bin/pip install -e .
18
 
 
 
19
 
20
  # Command to run when the container starts
21
  CMD ["/bin/bash"]