summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 7064b2f79c657ba308ae946ee1cbba7a45ce96cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM debian:jessie

RUN apt-get update

RUN apt-get install -y curl

ENV VANITY_URL https://github.com/xiam/vanity/releases/download/v0.1.1/vanity_linux_amd64.gz

RUN curl --silent -L ${VANITY_URL} | gzip -d > /bin/vanity

RUN chmod +x /bin/vanity

RUN mkdir -p /var/run/vanity

EXPOSE 8080

ENTRYPOINT ["/bin/vanity"]