summaryrefslogtreecommitdiff
path: root/tests/env/Dockerfile-beanstalkd.yaml
blob: 852385a18ddc6e7bb4761e1fca0239bed8a14267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM archlinux:latest

ARG DEBIAN_FRONTEND=noninteractive
RUN pacman-key --init

RUN Y | pacman -Syu --noconfirm
RUN Y | pacman -S --noconfirm curl base-devel pkgconf

RUN curl -sL https://github.com/kr/beanstalkd/archive/v1.12.tar.gz | tar xvz -C /tmp

WORKDIR /tmp/beanstalkd-1.12
RUN make -j12
RUN cp beanstalkd /usr/bin

EXPOSE 11300
ENTRYPOINT ["/usr/bin/beanstalkd"]