mirror of
https://github.com/teddysun/across.git
synced 2025-09-16 03:24:27 +08:00
Added brook.sh
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
# Dockerfile for Brook based alpine
|
||||
# Copyright (C) 2019 Teddysun <i@teddysun.com>
|
||||
# Copyright (C) 2019 - 2020 Teddysun <i@teddysun.com>
|
||||
# Reference URL:
|
||||
# https://github.com/txthinking/brook
|
||||
|
||||
FROM golang:alpine as builder
|
||||
RUN set -ex && apk add --update git \
|
||||
&& go get -u -v github.com/txthinking/brook/cli/brook
|
||||
|
||||
FROM alpine:latest
|
||||
LABEL maintainer="Teddysun <i@teddysun.com>"
|
||||
|
||||
COPY --from=builder /go/bin/brook /usr/bin
|
||||
WORKDIR /root
|
||||
COPY brook.sh /root/brook.sh
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache tzdata \
|
||||
&& chmod +x /root/brook.sh \
|
||||
&& /root/brook.sh \
|
||||
&& rm -fv /root/brook.sh
|
||||
|
||||
ENV TZ=Asia/Shanghai
|
||||
ENV ARGS="server -l :9000 -p password0"
|
||||
|
||||
CMD brook $ARGS
|
||||
|
Reference in New Issue
Block a user