mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-29 08:18:27 +00:00
10 lines
166 B
Text
10 lines
166 B
Text
|
FROM docker.io/golang:1.13.7-alpine3.11 AS builder
|
||
|
|
||
|
RUN apk --update --no-cache add bash build-base
|
||
|
|
||
|
WORKDIR /build
|
||
|
|
||
|
COPY . /build
|
||
|
|
||
|
RUN mkdir -p bin
|
||
|
RUN sh ./build.sh
|