mirror of
https://github.com/teddysun/across.git
synced 2025-01-19 14:29:37 +08:00
18 lines
490 B
Docker
18 lines
490 B
Docker
|
# Dockerfile for Brook based alpine
|
||
|
# Copyright (C) 2019 - 2020 Teddysun <i@teddysun.com>
|
||
|
# Reference URL:
|
||
|
# https://github.com/txthinking/brook
|
||
|
|
||
|
FROM --platform=$TARGETPLATFORM golang:alpine as builder
|
||
|
RUN set -ex && apk add --update git \
|
||
|
&& go get -u -v github.com/txthinking/brook/cli/brook
|
||
|
|
||
|
FROM --platform=$TARGETPLATFORM alpine:latest
|
||
|
LABEL maintainer="Teddysun <i@teddysun.com>"
|
||
|
|
||
|
COPY --from=builder /go/bin/brook /usr/bin
|
||
|
|
||
|
ENV ARGS="server -l :9000 -p password0"
|
||
|
|
||
|
CMD brook $ARGS
|