![Roman Gorshunov](/assets/img/avatar_default.png)
Following Airship Code and Project conventions [0], adding standard Makefile targets and moving charts and Dockerfiles into correct directories. [0] https://airship-docs.readthedocs.io/en/latest/code-conventions.html#code-and-project-conventions Change-Id: Ia38fd662be663b83a1b8adef1eca1492ed1fde34
36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
ARG FROM=ubuntu:16.04
|
|
FROM ${FROM}
|
|
|
|
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \
|
|
org.opencontainers.image.url='https://airshipit.org' \
|
|
org.opencontainers.image.documentation='https://opendev.org/airship/porthole' \
|
|
org.opencontainers.image.source='https://opendev.org/airship/porthole' \
|
|
org.opencontainers.image.vendor='The Airship Authors' \
|
|
org.opencontainers.image.licenses='Apache-2.0'
|
|
|
|
RUN set -xe && \
|
|
sed -i '/nobody/d' /etc/passwd && \
|
|
echo "nobody:x:65534:65534:nobody:/nonexistent:/bin/bash" >> /etc/passwd && \
|
|
apt-get update && \
|
|
apt-get dist-upgrade -y && \
|
|
apt-get install -y \
|
|
bash \
|
|
moreutils \
|
|
mysql-client \
|
|
python-oslo.rootwrap \
|
|
python3-oslo.rootwrap \
|
|
screen \
|
|
sudo \
|
|
rsyslog \
|
|
vim && \
|
|
sed -i 's/$PrivDropToUser syslog/$PrivDropToUser nobody/' /etc/rsyslog.conf && \
|
|
apt-get clean -y && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
/var/cache/debconf/* \
|
|
/var/lib/apt/lists/* \
|
|
/var/log/* \
|
|
/var/tmp/*
|
|
|
|
CMD ["/bin/bash"]
|