Skip to content
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
6 changes: 3 additions & 3 deletions docker/example/gearmand/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM gearmand/supervisord:1.0

ARG version=1.1.22
ARG version=2.0.0

LABEL description="Gearman Job Server Image"
LABEL maintainer="Gearmand Developers https://github.com/gearman/gearmand"
Expand All @@ -21,14 +21,14 @@ RUN apt-get update \
libssl-dev \
libtokyocabinet-dev \
uuid-dev \
wget \
curl \
&& apt-get clean autoclean \
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*

# Retrieve the source code and untar
WORKDIR /var/lib/gearman
RUN wget https://github.com/gearman/gearmand/releases/download/${version}/gearmand-${version}.tar.gz \
RUN curl -f -L -O https://github.com/gearman/gearmand/releases/download/${version}/gearmand-${version}.tar.gz \
&& tar xzvf gearmand-${version}.tar.gz \
&& rm -f gearmand-${version}.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion docker/example/gearmand/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IMAGE_NAME = gearmand
IMAGE_VERSION = 1.1.22
IMAGE_VERSION = 2.0.0
USE_CACHE ?=

image:
Expand Down
Loading