keshavbhandari commited on
Commit
0a5be61
1 Parent(s): dd3bfd1
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. run.sh +1 -1
Dockerfile CHANGED
@@ -6,7 +6,7 @@ COPY ./environment.yml /code/environment.yml
6
  # Create the environment using the environment.yml file
7
  RUN conda env create -f /code/environment.yml
8
 
9
- RUN conda install -c conda-forge fluidsynth -y
10
 
11
  # Set up a new user named "user" with user ID 1000
12
  RUN useradd -m -u 1000 user
 
6
  # Create the environment using the environment.yml file
7
  RUN conda env create -f /code/environment.yml
8
 
9
+ RUN conda install conda-forge::fluidsynth
10
 
11
  # Set up a new user named "user" with user ID 1000
12
  RUN useradd -m -u 1000 user
run.sh CHANGED
@@ -4,7 +4,7 @@ eval "$(conda shell.bash hook)"
4
  conda activate $CONDA_ENV
5
 
6
  # Install fluidsynth using conda
7
- conda install -c conda-forge fluidsynth -y
8
 
9
  # Install pip packages
10
  pip install -r requirements.txt
 
4
  conda activate $CONDA_ENV
5
 
6
  # Install fluidsynth using conda
7
+ conda install conda-forge::fluidsynth
8
 
9
  # Install pip packages
10
  pip install -r requirements.txt