We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b13e98 commit af7c1e5Copy full SHA for af7c1e5
1 file changed
Dockerfile
@@ -17,8 +17,8 @@ RUN install_packages \
17
unzip \
18
wget
19
20
-COPY res ./res
21
-COPY run ./run
+COPY run/_common ./run/
+COPY run/install ./run/
22
RUN run/install
23
24
ENV DATA_DIR="/data"
@@ -27,6 +27,9 @@ ENV DB_BASE_DIR="/db"
27
RUN mkdir -p "$DATA_DIR"
28
RUN mkdir -p "$DB_BASE_DIR"
29
30
+COPY res ./res
31
+COPY run ./run
32
+
33
RUN run/fill-db --samples
34
35
# NOTE Labels and annotations are added by CI (outside this Dockerfile);
0 commit comments