summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: d817d700f646616b2a7f70796a5dd92ce72505aa (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM alpine:latest
LABEL maintainer="Mike Crute <mike@crute.us>"

ENV TZ America/Los_Angeles

RUN set -euxo pipefail; \
    apk --no-cache add tzdata;

ADD ssh-proxy /ssh-proxy

CMD ["/ssh-proxy", "web"]