mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-13 23:31:34 +00:00
24d8df664c
* Fix #897 and shuffle directory around * Update find-lint * goimports Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
10 lines
166 B
Docker
10 lines
166 B
Docker
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 |