-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several required folders were missing from the install
- Loading branch information
1 parent
4fccc45
commit 07704f0
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,9 @@ RUN \ | |
RUN \ | ||
cd Bio-Easel && perl Makefile.PL | ||
RUN \ | ||
cd Bio-Easel && make && make install DESTDIR=/install/ | ||
cd Bio-Easel && make && make install DESTDIR=/install/ && \ | ||
cp -rv /Bio-Easel/lib /install/Bio-Easel/lib && \ | ||
cp -rv /Bio-Easel/blib/lib /install/Bio-Easel/blib/lib | ||
|
||
FROM build AS easel | ||
|
||
|
@@ -112,7 +114,6 @@ ENV \ | |
RIBOEASELDIR="$RNA/ribovore/infernal/easel/miniapps" \ | ||
RIBOTIMEDIR=/usr/bin \ | ||
RIBODIR="$RNA/ribovore/ribovore" \ | ||
# ??? | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
AntonPetrov
Author
Member
|
||
BIOEASELDIR="$RNA/Bio-Easel/blib/lib:$RNA/Bio-Easel/blib/arch:$RNA/Bio-Easel:$RNA/Bio-Easel/lib" \ | ||
LC_ALL="C.UTF-8" LANG="C.UTF-8" \ | ||
DATAPATH="/rna/RNAstructure/data_tables/" | ||
|
@@ -162,4 +163,3 @@ COPY --from=traveler /install/utils/* ${RNA}/traveler/utils/ | |
# Forgive me, for I have hacked | ||
# In the name of the Compiler, the Debugger, and the Holy Stack Trace | ||
COPY --from=traveler "/usr/local/lib64/libstdc++.so.6.0.32" "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30" | ||
|
The comment (not very eloquently) suggested I was not sure whether this env var is needed :)