Added hysteria Docker Image

This commit is contained in:
Teddysun
2022-06-22 20:30:28 +09:00
parent b31390e228
commit e1acb61301
8 changed files with 219 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Dockerfile for hysteria based alpine
# Copyright (C) 2022 Teddysun <i@teddysun.com>
# Reference URL:
# https://github.com/HyNetwork/hysteria
FROM --platform=${TARGETPLATFORM} alpine:latest
LABEL maintainer="Teddysun <i@teddysun.com>"
ARG TARGETPLATFORM
WORKDIR /root
COPY hysteria.sh /root/hysteria.sh
COPY server.json /etc/hysteria/server.json
COPY cert.crt /etc/hysteria/cert.crt
COPY private.key /etc/hysteria/private.key
RUN set -ex \
&& apk add --no-cache bash tzdata ca-certificates \
&& chmod +x /root/hysteria.sh \
&& /root/hysteria.sh "${TARGETPLATFORM}" \
&& rm -fv /root/hysteria.sh
VOLUME /etc/hysteria
ENV TZ=Asia/Shanghai
CMD [ "/usr/bin/hysteria", "server", "--config", "/etc/hysteria/server.json" ]