summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-07-31 15:46:25 -0700
committerMike Crute <mike@crute.us>2023-07-31 15:46:25 -0700
commitd7d77fd1c9035ec6356abb57a5486f0a13029628 (patch)
treecc9528787aa42171fee791bb69148c346ae4b2d9 /Dockerfile
parentcfbb1efaea31c498433db43cb507f54545c724f5 (diff)
downloadwebsocket_proxy-d7d77fd1c9035ec6356abb57a5486f0a13029628.tar.bz2
websocket_proxy-d7d77fd1c9035ec6356abb57a5486f0a13029628.tar.xz
websocket_proxy-d7d77fd1c9035ec6356abb57a5486f0a13029628.zip
Make docker build work
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..d817d70
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
1FROM alpine:latest
2LABEL maintainer="Mike Crute <mike@crute.us>"
3
4ENV TZ America/Los_Angeles
5
6RUN set -euxo pipefail; \
7 apk --no-cache add tzdata;
8
9ADD ssh-proxy /ssh-proxy
10
11CMD ["/ssh-proxy", "web"]