Sign inSign up

shoplineapp/beanstalkd

By shoplineapp

Updated about 6 years ago

Simple and fast general purpose work queue

Image
0

287

shoplineapp/beanstalkd repository overview

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"]

Tag summary

Content type

Image

Digest

Size

3.8 MB

Last updated

about 6 years ago

docker pull shoplineapp/beanstalkd:1.12