Paolo-Fraccaro commited on
Commit
d1e90b9
1 Parent(s): d9b212b

try to fix env

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,8 +8,6 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
8
  python3-setuptools \
9
  git \
10
  wget \
11
- gcc-4.9 \
12
- libstdc++6 \
13
  && apt-get clean && rm -rf /var/lib/apt/lists/*
14
 
15
  RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
@@ -78,6 +76,8 @@ RUN pip3 install rasterio
78
  # Set the working directory to the user's home directory
79
  WORKDIR $HOME/app
80
 
 
 
81
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
82
  COPY --chown=user . $HOME/app
83
 
 
8
  python3-setuptools \
9
  git \
10
  wget \
 
 
11
  && apt-get clean && rm -rf /var/lib/apt/lists/*
12
 
13
  RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
 
76
  # Set the working directory to the user's home directory
77
  WORKDIR $HOME/app
78
 
79
+ ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/code/miniconda/lib"
80
+
81
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
82
  COPY --chown=user . $HOME/app
83