tinaok commited on
Commit
fc2318a
·
verified ·
1 Parent(s): 8022f28

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -6,13 +6,16 @@ COPY ./requirements.txt /code/requirements.txt
6
  RUN python3 -m pip install --no-cache-dir --upgrade pip
7
  RUN python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
 
 
 
9
  COPY . .
10
  # Add step to download data.tar from URL and extract its contents to /data/
11
  RUN mkdir data \
12
  && chmod 777 data \
13
  && apt-get update \
14
  && apt-get install -y wget tar \
15
- && wget https://data-eurogoship.ifremer.fr/data.tar \
16
  && tar -xvf data.tar -C data/ \
17
  && rm data.tar \
18
  && ls data/
 
6
  RUN python3 -m pip install --no-cache-dir --upgrade pip
7
  RUN python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
+ # Add pip install for xsadcp package from GitHub
10
+ RUN python3 -m pip install --no-cache-dir --upgrade git+https://github.com/tinaok/xsadcp.git
11
+
12
  COPY . .
13
  # Add step to download data.tar from URL and extract its contents to /data/
14
  RUN mkdir data \
15
  && chmod 777 data \
16
  && apt-get update \
17
  && apt-get install -y wget tar \
18
+ && wget https://data-eurogoship.ifremer.fr/data_test.tar \
19
  && tar -xvf data.tar -C data/ \
20
  && rm data.tar \
21
  && ls data/