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.
23 lines
624 B
23 lines
624 B
#Build stage
|
|
FROM golang:1.11.2-alpine3.7 AS build-env
|
|
|
|
|
|
ARG VERSION
|
|
|
|
#Build deps
|
|
RUN apk --no-cache add build-base git
|
|
|
|
#Setup repo
|
|
COPY . ${GOPATH}/src/git.jonasfranz.software/JonasFranzDEV/gitea-github-migrator
|
|
WORKDIR ${GOPATH}/src/git.jonasfranz.software/JonasFranzDEV/gitea-github-migrator
|
|
|
|
RUN make docker-binary
|
|
|
|
FROM alpine:3.7
|
|
LABEL maintainer="info@jonasfranz.software"
|
|
|
|
COPY --from=build-env /go/src/git.jonasfranz.software/JonasFranzDEV/gitea-github-migrator/gitea-github-migrator /usr/local/bin/gitea-github-migrator
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
ENTRYPOINT ["/usr/local/bin/gitea-github-migrator"]
|
|
|