spacemacs/.circleci/dockerfiles/Dockerfile

22 lines
324 B
Docker
Raw Normal View History

2017-09-24 17:45:00 +00:00
FROM alpine
MAINTAINER JAremko <w3techplaygound@gmail.com>
RUN apk --no-cache add \
bash \
ca-certificates \
curl \
emacs-nox \
git \
gzip \
jq \
openssh \
tar \
&& rm -rf /var/cache/* /tmp/* /var/log/* ~/.cache
ENV HOME=/root/
VOLUME /root/project
ENTRYPOINT ["bin/bash", "-c"]