File: Dockerfile

package info (click to toggle)
beanstalkd 1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 628 kB
  • sloc: ansic: 7,522; sh: 390; makefile: 112; ruby: 14
file content (13 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
ARG BASE=alpine
FROM alpine as builder
RUN apk add --no-cache build-base git
COPY . /tmp/beanstalkd
RUN cd /tmp/beanstalkd && make

################################
ARG BASE
FROM ${BASE}

COPY --from=builder /tmp/beanstalkd/beanstalkd /usr/bin/
EXPOSE 11300
ENTRYPOINT ["/usr/bin/beanstalkd"]