Simple and fast general purpose work queue
287
The image was directly built from https://github.com/beanstalkd/beanstalkd.
Please refer to changelog for more detail https://github.com/beanstalkd/beanstalkd/blob/master/CHANGELOG.md
FROM alpine as builder
RUN \
apk -U upgrade --no-cache && \
apk add --no-cache build-base git
COPY . /tmp/beanstalkd
RUN \
cd /tmp/beanstalkd && \
make
################################
FROM alpine
RUN apk -U upgrade --no-cache
COPY --from=builder /tmp/beanstalkd/beanstalkd /usr/bin/
RUN mkdir /beanstalkd
EXPOSE 11300
ENTRYPOINT ["/usr/bin/beanstalkd"]
Content type
Image
Digest
Size
3.8 MB
Last updated
about 6 years ago
docker pull shoplineapp/beanstalkd:1.12