2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00

modules decouple and conditional build.

This commit is contained in:
Miroslav Šedivý
2021-01-30 23:55:50 +01:00
parent 28f3397723
commit 371cfa496c
2 changed files with 2 additions and 2 deletions

@ -20,7 +20,7 @@ RUN set -eux; \
#
# build server
COPY . .
RUN go get -v -t -d . && go build -o bin/neko -i cmd/neko/main.go
RUN go get -v -t -d . && go build -tags browser -o bin/neko -i cmd/neko/main.go
#
# Stage 2: Runtime.