Skip to content

[WIP] Add 3.7 #197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: bash
services: docker

env:
- VERSION=3.7 VARIANT=debian
- VERSION=3.7 VARIANT=alpine
- VERSION=3.6 VARIANT=debian
- VERSION=3.6 VARIANT=alpine

Expand Down
8 changes: 4 additions & 4 deletions 3.6/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:stretch-slim

RUN set -ex; \
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
gnupg \
Expand All @@ -13,7 +13,7 @@ RUN groupadd -r rabbitmq && useradd -r -d /var/lib/rabbitmq -m -g rabbitmq rabbi

# grab gosu for easy step-down from root
ENV GOSU_VERSION 1.10
RUN set -x \
RUN set -eux \
&& apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
Expand All @@ -26,7 +26,7 @@ RUN set -x \
&& apt-get purge -y --auto-remove ca-certificates wget

# install Erlang
RUN set -ex; \
RUN set -eux; \
apt-get update; \
# "erlang-base-hipe" is optional (and only supported on a few arches)
# so, only install it if it's available for our current arch
Expand Down Expand Up @@ -64,7 +64,7 @@ ENV RABBITMQ_VERSION 3.6.14
ENV RABBITMQ_GITHUB_TAG rabbitmq_v3_6_14
ENV RABBITMQ_DEBIAN_VERSION 3.6.14-1

RUN set -ex; \
RUN set -eux; \
\
apt-get update; \
apt-get install -y --no-install-recommends ca-certificates wget; \
Expand Down
Loading