Added multiple architectures Dockerfile

This commit is contained in:
Teddysun
2020-01-20 22:52:03 +09:00
parent e14e181b0a
commit 7e4a57ba3a
4 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# 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