diff --git a/Makefile b/Makefile index f7f1e2b0..caf87c37 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ # BASE_IMAGE is the base image to use for MQ, for example "ubuntu" or "rhel" BASE_IMAGE ?= ubuntu:16.04 # MQ_VERSION is the fully qualified MQ version number to build -MQ_VERSION ?= 9.0.4.0 +MQ_VERSION ?= 9.0.5.0 # MQ_ARCHIVE is the name of the file, under the downloads directory, from which MQ Advanced can # be installed. The default value is derived from MQ_VERSION, BASE_IMAGE and architecture # Does not apply to MQ Advanced for Developers. @@ -71,6 +71,7 @@ endif # Archive names for IBM MQ Advanced for Developers for Ubuntu MQ_ARCHIVE_DEV_9.0.3.0=mqadv_dev903_ubuntu_x86-64.tar.gz MQ_ARCHIVE_DEV_9.0.4.0=mqadv_dev904_ubuntu_x86-64.tar.gz +MQ_ARCHIVE_DEV_9.0.5.0=mqadv_dev905_ubuntu_x86-64.tar.gz ############################################################################### # Build targets diff --git a/incubating/Dockerfile-sfbridge b/incubating/Dockerfile-sfbridge index 134cc4fa..3f7360f6 100644 --- a/incubating/Dockerfile-sfbridge +++ b/incubating/Dockerfile-sfbridge @@ -15,7 +15,7 @@ FROM ubuntu:16.04 # The URL to download the MQ installer from in tar.gz format -ARG MQ_URL=https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/mqadv_dev903_ubuntu_x86-64.tar.gz +ARG MQ_URL=https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/mqadv_dev905_ubuntu_x86-64.tar.gz # The MQ packages to install ARG MQ_PACKAGES="ibmmq-sfbridge" diff --git a/incubating/mq-explorer/Dockerfile b/incubating/mq-explorer/Dockerfile index 0deffcb2..32575d17 100644 --- a/incubating/mq-explorer/Dockerfile +++ b/incubating/mq-explorer/Dockerfile @@ -15,7 +15,7 @@ FROM ubuntu:16.04 # The URL to download the MQ installer from in tar.gz format -ARG MQ_URL=https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/mqadv_dev903_ubuntu_x86-64.tar.gz +ARG MQ_URL=https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/mqadv_dev905_ubuntu_x86-64.tar.gz # The MQ packages to install ARG MQ_PACKAGES="ibmmq-explorer" @@ -35,4 +35,4 @@ ENV LANG=en_US.UTF-8 # Run as mqm (999) USER 999 -ENTRYPOINT ["MQExplorer"] \ No newline at end of file +ENTRYPOINT ["MQExplorer"] diff --git a/incubating/mqadvanced-server-dev/Dockerfile b/incubating/mqadvanced-server-dev/Dockerfile index bf0ef99c..8dd5fbff 100644 --- a/incubating/mqadvanced-server-dev/Dockerfile +++ b/incubating/mqadvanced-server-dev/Dockerfile @@ -15,7 +15,7 @@ ############################################################################### # Build stage to build Go code ############################################################################### -FROM golang:1.9 as builder +FROM golang:1.9 as builder WORKDIR /go/src/github.com/ibm-messaging/mq-container/ COPY cmd/ ./cmd COPY internal/ ./internal @@ -29,7 +29,7 @@ RUN go test -v ./cmd/runmqdevserver/... ############################################################################### # Main build stage ############################################################################### -FROM mqadvanced-server-dev-base:9.0.4.0-x86_64-ubuntu-16.04 +FROM mqadvanced-server-dev-base:9.0.5.0-x86_64-ubuntu-16.04 # Enable MQ developer default configuration ENV MQ_DEV=true @@ -53,4 +53,4 @@ RUN chmod +x /usr/local/bin/runmq* EXPOSE 9443 -ENTRYPOINT ["runmqdevserver"] \ No newline at end of file +ENTRYPOINT ["runmqdevserver"]