Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
panacota
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amandine PERRIN
panacota
Commits
0553c2d9
Commit
0553c2d9
authored
6 years ago
by
Amandine PERRIN
Browse files
Options
Downloads
Patches
Plain Diff
add new machines to test installation
parent
fe2fe4e3
No related branches found
No related tags found
No related merge requests found
Pipeline
#9569
failed
6 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
for_build/annote_and_mafft/Dockerfile
+11
-6
11 additions, 6 deletions
for_build/annote_and_mafft/Dockerfile
for_build/mafft/Dockerfile
+32
-0
32 additions, 0 deletions
for_build/mafft/Dockerfile
for_build/mmseqs_and_fastme/Dockerfile
+35
-0
35 additions, 0 deletions
for_build/mmseqs_and_fastme/Dockerfile
with
78 additions
and
6 deletions
for_build/
basics
/Dockerfile
→
for_build/
annote_and_mafft
/Dockerfile
+
11
−
6
View file @
0553c2d9
...
...
@@ -7,15 +7,20 @@ RUN apt-get update &&\
# Install package needed
RUN
apt-get
install
-y
\
wget
\
python3-pip
# Update pip
RUN
pip3
install
--upgrade
pip
# Install prokka:
WORKDIR
/tmp
RUN
apt-get
install
-y
\
libdatetime-perl
\
libxml-simple-perl
\
libdigest-md5-perl
\
git
\
python3-pip
\
default-jre
\
bioperl
# Update pip
RUN
pip3
install
--upgrade
pip
RUN
rm
/usr/bin/mafft
# remove mafft installed with bioperl
\ No newline at end of file
RUN
git clone https://github.com/tseemann/prokka.git
RUN
/tmp/prokka/bin/prokka
--setupdb
RUN
ln
-s
/tmp/prokka/bin/prokka /usr/local/bin
This diff is collapsed.
Click to expand it.
for_build/mafft/Dockerfile
0 → 100644
+
32
−
0
View file @
0553c2d9
from
ubuntu:16.04
# Update apt-get packages
RUN
apt-get update
&&
\
apt-get
-y
upgrade
# Install package needed
RUN
apt-get
install
-y
\
wget
\
python3-pip
# Update pip
RUN
pip3
install
--upgrade
pip
RUN
apt-get
install
-y
\
libdatetime-perl
\
libxml-simple-perl
\
libdigest-md5-perl
\
git
\
default-jre
\
bioperl
# Install mafft 7.313
RUN
rm
/usr/bin/mafft
# remove mafft installed with bioperl
WORKDIR
/tmp
RUN
wget https://mafft.cbrc.jp/alignment/software/mafft-7.313-with-extensions-src.tgz
&&
\
tar
xf mafft-7.313-with-extensions-src.tgz
&&
\
rm
mafft-7.313-with-extensions-src.tgz
WORKDIR
/tmp/mafft-7.313-with-extensions/core
RUN
make clean
&&
\
make
&&
\
make
install
\ No newline at end of file
This diff is collapsed.
Click to expand it.
for_build/mmseqs_and_fastme/Dockerfile
0 → 100644
+
35
−
0
View file @
0553c2d9
from
ubuntu:16.04
# Update apt-get packages
RUN
apt-get update
&&
\
apt-get
-y
upgrade
# Install package needed and update pip
RUN
apt-get
install
-y
\
wget
\
python3-pip
RUN
pip3
install
--upgrade
pip
# Install mmseqs2
WORKDIR
/tmp
RUN
apt-get
install
-y
cmake
&&
\
wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz
&&
\
tar
xf mmseqs-static_sse41.tar.gz
&&
\
rm
mmseqs-static_sse41.tar.gz
&&
\
mv
/tmp/mmseqs2/bin/mmseqs /usr/local/bin
&&
\
# remove useless files
rm -r /tmp/mmseqs2
# Install FastME
WORKDIR
/tmp
RUN
apt-get
install
-y
automake
&&
\
git clone https://gite.lirmm.fr/atgc/FastME.git
WORKDIR
/tmp/FastME
RUN
./configure
&&
\
make
&&
\
make
install
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment