Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker_stuff/oscli/build/Dockerfile.pip
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (52 sloc)
1.62 KB
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
FROM ubuntu:16.04 | |
MAINTAINER Christian Schnidrig | |
RUN apt-get update && \ | |
apt-get install -y \ | |
curl \ | |
vim-nox \ | |
git \ | |
less \ | |
python-dev \ | |
python-pip \ | |
sudo \ | |
libffi-dev \ | |
libssl-dev \ | |
python-rados \ | |
python-rbd && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
RUN pip install --no-cache-dir --upgrade pip | |
RUN pip install --no-cache-dir --upgrade cryptography | |
RUN pip install --no-cache-dir --upgrade pyopenssl | |
RUN pip install --no-cache-dir --upgrade pytz | |
RUN pip install --no-cache-dir python-openstackclient | |
RUN pip install --no-cache-dir python-barbicanclient \ | |
python-ceilometerclient \ | |
python-heatclient \ | |
python-saharaclient \ | |
python-troveclient \ | |
python-designateclient \ | |
python-magnumclient \ | |
python-manilaclient \ | |
python-monascaclient \ | |
python-neutronclient \ | |
python-novaclient \ | |
python-cinderclient \ | |
python-glanceclient | |
RUN pip install --no-cache-dir git+https://github.com/openstack/networking-l2gw/ | |
# docker: 1000; staff: 50 | |
RUN export uid=1000 gid=50 && \ | |
mkdir -p /home/docker && \ | |
echo "docker:x:${uid}:${gid}:docker,,,:/home/docker:/bin/bash" >> /etc/passwd && \ | |
echo "docker:x:${uid}:" >> /etc/group && \ | |
echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/docker && \ | |
chmod 0440 /etc/sudoers.d/docker && \ | |
chown ${uid}:${gid} -R /home/docker | |
USER docker | |
ENV LC_ALL C.UTF-8 | |
ENV HOME /home/docker | |
WORKDIR /home/docker | |
VOLUME $ENV_HOME/rc | |
COPY .profile .bash* .os_prompt $HOME/ | |
RUN chown ${uid}:${gid} -R $HOME | |
ENTRYPOINT ["/bin/bash", "-li"] |