mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
build: update dockerfile (#82)
This commit is contained in:
parent
dbf7ce0deb
commit
ff33bcb99a
2 changed files with 13 additions and 9 deletions
13
Dockerfile
13
Dockerfile
|
@ -7,7 +7,9 @@ COPY web .
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
# build app
|
# build app
|
||||||
FROM golang:1.16 AS app-builder
|
FROM golang:1.17.6-alpine AS app-builder
|
||||||
|
|
||||||
|
RUN apk add --no-cache git make build-base
|
||||||
|
|
||||||
ENV SERVICE=autobrr
|
ENV SERVICE=autobrr
|
||||||
|
|
||||||
|
@ -21,12 +23,11 @@ COPY . ./
|
||||||
COPY --from=web-builder /web/build ./web/build
|
COPY --from=web-builder /web/build ./web/build
|
||||||
COPY --from=web-builder /web/build.go ./web
|
COPY --from=web-builder /web/build.go ./web
|
||||||
|
|
||||||
ENV CGO_ENABLED=0
|
|
||||||
ENV GOOS=linux
|
ENV GOOS=linux
|
||||||
|
ENV CGO_ENABLED=1
|
||||||
|
|
||||||
#RUN make -f Makefile build/app
|
RUN make -f Makefile build/app
|
||||||
RUN go build -o bin/${SERVICE} ./cmd/${SERVICE}/main.go
|
RUN make -f Makefile build/ctl
|
||||||
RUN go build -o bin/autobrrctl ./cmd/autobrrctl/main.go
|
|
||||||
|
|
||||||
# build runner
|
# build runner
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
@ -44,5 +45,5 @@ VOLUME /config
|
||||||
COPY --from=app-builder /src/bin/autobrr /usr/local/bin/
|
COPY --from=app-builder /src/bin/autobrr /usr/local/bin/
|
||||||
COPY --from=app-builder /src/bin/autobrrctl /usr/local/bin/
|
COPY --from=app-builder /src/bin/autobrrctl /usr/local/bin/
|
||||||
|
|
||||||
ENTRYPOINT ["autobrr", "--config", "/config"]
|
ENTRYPOINT ["/usr/local/bin/autobrr", "--config", "/config"]
|
||||||
#CMD ["--config", "/config"]
|
#CMD ["--config", "/config"]
|
||||||
|
|
9
Makefile
9
Makefile
|
@ -2,10 +2,13 @@
|
||||||
.POSIX:
|
.POSIX:
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
|
||||||
|
GIT_COMMIT := $(shell git rev-parse HEAD 2> /dev/null)
|
||||||
|
GIT_TAG := $(shell git tag --points-at HEAD 2> /dev/null | head -n 1)
|
||||||
|
|
||||||
SERVICE = autobrr
|
SERVICE = autobrr
|
||||||
GO = go
|
GO = go
|
||||||
RM = rm
|
RM = rm
|
||||||
GOFLAGS =
|
GOFLAGS = "-X main.commit=$(GIT_COMMIT) -X main.version=$(GIT_TAG)"
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
BINDIR = bin
|
BINDIR = bin
|
||||||
|
|
||||||
|
@ -21,10 +24,10 @@ test:
|
||||||
build: deps build/web build/app
|
build: deps build/web build/app
|
||||||
|
|
||||||
build/app:
|
build/app:
|
||||||
go build -o bin/$(SERVICE) cmd/$(SERVICE)/main.go
|
go build -ldflags $(GOFLAGS) -o bin/$(SERVICE) cmd/$(SERVICE)/main.go
|
||||||
|
|
||||||
build/ctl:
|
build/ctl:
|
||||||
go build -o bin/autobrrctl cmd/autobrrctl/main.go
|
go build -ldflags $(GOFLAGS) -o bin/autobrrctl cmd/autobrrctl/main.go
|
||||||
|
|
||||||
build/web:
|
build/web:
|
||||||
cd web && yarn build
|
cd web && yarn build
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue