Forked from pvergain/Dockerfile.centos7.python36.pipenv
Last active
October 3, 2019 20:15
-
-
Save yriveiro/758f6d8d9ac29a02b790dd3f30e3575f to your computer and use it in GitHub Desktop.
Dockerfile based on centos:7 with cassandra-migrate
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
# Use an official centos7 image | |
FROM centos:7 | |
RUN yum update -y \ | |
&& yum install -y python2-pip | |
# pipenv installation | |
RUN pip install cassandra-migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment