Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Carlos Ribas
rnacentral-webcode
Commits
4fe92d40
Commit
4fe92d40
authored
Sep 23, 2020
by
carlosribas
Browse files
Avoid error when installing Redis
parent
0a87e333
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Dockerfile-development
Dockerfile-development
+6
-6
No files found.
Dockerfile-development
View file @
4fe92d40
...
...
@@ -71,16 +71,16 @@ RUN \
cd virtualenvs && \
$LOC/python-2.7.11/bin/virtualenv RNAcentral --python=$LOC/python-2.7.11/bin/python
# Install Redis
# Install Redis
(the stable version of Redis requires GCC 4.9 or above, not available for centos 6)
RUN \
cd $LOC && \
curl -OL http://download.redis.io/re
dis-stable
.tar.gz && \
tar -xvzf redis-
stable
.tar.gz && \
cd redis-
stable
&& \
curl -OL http://download.redis.io/re
leases/redis-5.0.9
.tar.gz && \
tar -xvzf redis-
5.0.9
.tar.gz && \
cd redis-
5.0.9
&& \
make && \
cd $LOC && \
rm redis-
stable
.tar.gz && \
mv redis-
stable
redis
rm redis-
5.0.9
.tar.gz && \
mv redis-
5.0.9
redis
# Install libevent (memcached requirement)
RUN \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment