You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
482 B
17 lines
482 B
5 years ago
|
FROM golang:1.13-alpine3.10 AS build-env
|
||
|
|
||
|
#Setup
|
||
|
COPY . /src/gitea-group-sync
|
||
|
WORKDIR /src/gitea-group-sync
|
||
|
|
||
|
#Build deps
|
||
|
RUN apk --no-cache add build-base git
|
||
|
|
||
|
RUN go get gopkg.in/ldap.v3 && go get gopkg.in/robfig/cron.v3 && go build
|
||
|
|
||
|
FROM alpine:3.10
|
||
|
|
||
|
COPY --from=build-env /src/gitea-group-sync/gitea-group-sync /app/gitea-group-sync/gitea-group-sync
|
||
|
RUN ln -s /app/gitea-group-sync/gitea-group-sync /usr/local/bin/gitea-group-sync
|
||
|
ENTRYPOINT ["/usr/local/bin/gitea-group-sync"]
|