diff options
author | 2018-06-11 09:28:43 +0000 | |
---|---|---|
committer | 2018-06-11 09:28:43 +0000 | |
commit | 95e35d771b0013933c3dd42519b8211124e163a3 (patch) | |
tree | ba45c3f80cc450030aa1ee78efc4a7424d871adf /docker | |
parent | Only bother with the deploy step on the master branch (diff) |
adds log rotation and speeds up build
Diffstat (limited to 'docker')
-rw-r--r-- | docker/ci.Dockerfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docker/ci.Dockerfile b/docker/ci.Dockerfile new file mode 100644 index 00000000..69a7e5ba --- /dev/null +++ b/docker/ci.Dockerfile @@ -0,0 +1,24 @@ +FROM python:3.6-alpine3.7 + +RUN apk add --update tini \ + git \ + build-base \ + gcc \ + cmake \ + autoconf \ + automake \ + libtool \ + ruby \ + ruby-dev \ + ruby-rdoc \ + ruby-irb \ + docker \ + curl + +ENV PIPENV_VENV_IN_PROJECT=1 +ENV PIPENV_IGNORE_VIRTUALENVS=1 +ENV PIPENV_NOSPIN=1 +ENV PIPENV_HIDE_EMOJIS=1 + +RUN pip install pipenv +RUN gem install scss_lint |