blog/writing_env/Dockerfile

46 lines
1.1 KiB
Docker
Raw Normal View History

2017-09-25 13:19:18 +02:00
FROM alpine:edge
ENV LANG C.UTF-8
ENV SSL_CERT_FILE /etc/ssl/certs/ca-certificates.crt
2017-09-05 22:17:49 +02:00
ENV BLOG_UID 1000
ENV BLOG_GID 1000
2017-09-05 22:17:49 +02:00
# prepare repositories
RUN set -ex \
&& echo "http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
&& apk update
# add files
ADD root /
2017-09-05 22:17:49 +02:00
# prepare for provisioning
RUN set -ex \
2018-01-22 12:01:05 +01:00
&& apk upgrade -a --no-cache \
&& apk add --no-cache\
ansible \
bash \
ca-certificates \
g++ \
git \
openssh \
python \
sudo \
&& addgroup -g $BLOG_GID blog \
&& adduser -h /home/blog -D -s /bin/sh -G blog blog \
&& echo 'blog ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/blog \
&& chmod 0440 /etc/sudoers.d/blog \
&& chown -R $BLOG_UID:$BLOG_GID /home/blog
2017-09-05 22:17:49 +02:00
# switch user to blog
USER blog
2017-09-05 22:17:49 +02:00
# provision
RUN set -ex \
&& git clone https://github.com/xsteadfastx/batcave.git ~/.batcave \
2018-01-22 12:01:05 +01:00
&& touch ~/.profile \
2017-10-04 12:05:49 +02:00
&& ansible-playbook -i ~/.batcave/hosts ~/.batcave/shell.yml -c local --extra-vars="host=127.0.0.1" \
2017-09-06 13:45:59 +02:00
&& ansible-playbook -c local /home/blog/playbooks/writing_env.yml
2017-09-05 22:17:49 +02:00
2017-05-23 11:26:00 +02:00
EXPOSE 8000