Skip to content

Commit c775c5e

Browse files
committed
Add 3.7.0
1 parent b35f319 commit c775c5e

File tree

11 files changed

+1861
-4
lines changed

11 files changed

+1861
-4
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ language: bash
22
services: docker
33

44
env:
5+
- VERSION=3.7 VARIANT=debian
6+
- VERSION=3.7 VARIANT=alpine
57
- VERSION=3.6 VARIANT=debian
68
- VERSION=3.6 VARIANT=alpine
79

3.6/debian/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:stretch-slim
22

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

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

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

67-
RUN set -ex; \
67+
RUN set -eux; \
6868
\
6969
apt-get update; \
7070
apt-get install -y --no-install-recommends ca-certificates wget; \

0 commit comments

Comments
 (0)