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
84bf5588
There was a problem fetching the pipeline summary.
Commit
84bf5588
authored
7 years ago
by
Amandine PERRIN
Browse files
Options
Downloads
Patches
Plain Diff
Add sphinx installation on test machine
parent
3090c581
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
for_tests/Dockerfile
+23
-14
23 additions, 14 deletions
for_tests/Dockerfile
with
23 additions
and
14 deletions
for_tests/Dockerfile
+
23
−
14
View file @
84bf5588
from
ubuntu:16.04
# Update apt-get packages
RUN
apt-get update
&&
\
apt-get
-y
upgrade
# Install package needed
# Install package needed and update pip
RUN
apt-get
install
-y
\
wget
\
python3-pip
\
cmake
# to install mmseqs
# Update pip
RUN
pip3
install
--upgrade
pip
# Install barrnap
WORKDIR
/tmp
RUN
wget https://github.com/tseemann/barrnap/archive/0.8.tar.gz
&&
\
tar
-xf
0.8.tar.gz
&&
\
rm
0.8.tar.gz
RUN
mv
/tmp/barrnap-0.8/bin/barrnap /usr/local/bin
# Remove heavy useless files
RUN
rm
-r
/tmp/barrnap-0.8/examples /tmp/barrnap-0.8/build/
*
.aln
rm
0.8.tar.gz
&&
\
mv
/tmp/barrnap-0.8/bin/barrnap /usr/local/bin
&&
\
# Remove heavy useless files
rm -r /tmp/barrnap-0.8/examples /tmp/barrnap-0.8/build/*.aln
# Install prokka:
WORKDIR
/tmp
...
...
@@ -30,17 +33,23 @@ RUN apt-get install -y\
libdigest-md5-perl
\
git
\
default-jre
\
bioperl
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
bioperl
&&
\
git clone https://github.com/tseemann/prokka.git
RUN
/tmp/prokka/bin/prokka
--setupdb
&&
\
ln
-s
/tmp/prokka/bin/prokka /usr/local/bin
# Install mmseqs2
WORKDIR
/tmp
RUN
wget https://mmseqs.com/latest/mmseqs-static_sse41.tar.gz
&&
\
tar
xf mmseqs-static_sse41.tar.gz
&&
\
rm
mmseqs-static_sse41.tar.gz
RUN
mv
/tmp/mmseqs2/bin/mmseqs /usr/local/bin
# remove useless files
RUN
rm
-r
/tmp/mmseqs2
rm
mmseqs-static_sse41.tar.gz
&&
\
mv
/tmp/mmseqs2/bin/mmseqs /usr/local/bin
&&
\
# remove useless files
rm -r /tmp/mmseqs2
# Install sphinx
RUN
pip3
install
sphinx
&&
\
pip3
install
sphinx_rtd_theme
\ No newline at end of file
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