summaryrefslogtreecommitdiffhomepage
path: root/pkg/docker/Makefile
blob: ac292b563080705bec37f2f88517bee9022f9807 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/make

include ../../version
include ../shasum.mak

DEFAULT_VERSION := $(NXT_VERSION)

VERSION ?= $(DEFAULT_VERSION)

EXPORT_DIR := $(VERSION)

MODULES ?= go jsc node perl php python ruby minimal

VERSION_minimal ?=
CONTAINER_minimal ?= debian:bullseye-slim
CONFIGURE_minimal ?=
INSTALL_minimal ?=	version
define COPY_minimal
endef

VERSION_go ?=		1.19
CONTAINER_go ?=		golang:$(VERSION_go)
CONFIGURE_go ?=		go --go-path=$$GOPATH
INSTALL_go ?=		go-install-src libunit-install
define COPY_go
COPY --from=BUILDER /usr/lib/\*-linux-gnu/libunit.a /tmp/\n\$
COPY --from=BUILDER /usr/include/nxt_* /usr/include/\n\$
COPY --from=BUILDER /go/src/ /go/src/
endef

VERSION_jsc ?=		11
CONTAINER_jsc ?=	eclipse-temurin:$(VERSION_jsc)-jdk
CONFIGURE_jsc ?=	java --jars=/usr/share/unit-jsc-common/
INSTALL_jsc ?=		java-shared-install java-install
COPY_jsc =	 		COPY --from=BUILDER /usr/share/unit-jsc-common/ /usr/share/unit-jsc-common/

VERSION_node ?=		18
CONTAINER_node ?=	node:$(VERSION_node)
CONFIGURE_node ?=	nodejs --node-gyp=/usr/local/lib/node_modules/npm/bin/node-gyp-bin/node-gyp
INSTALL_node ?=		node node-install libunit-install
define COPY_node
COPY --from=BUILDER /usr/lib/\*-linux-gnu/libunit.a /tmp/\n\$
COPY --from=BUILDER /usr/include/nxt_* /usr/include/\n\$
COPY --from=BUILDER /usr/local/lib/node_modules/unit-http/ /usr/local/lib/node_modules/unit-http/
endef

VERSION_perl ?=		5.36
CONTAINER_perl ?=	perl:$(VERSION_perl)
CONFIGURE_perl ?=	perl
INSTALL_perl ?=		perl-install
COPY_perl =

VERSION_php ?=		8.1
CONTAINER_php ?=	php:$(VERSION_php)-cli
CONFIGURE_php ?=	php
INSTALL_php ?=		php-install
COPY_php =			RUN ldconfig

VERSION_python ?=	3.11
CONTAINER_python ?=	python:$(VERSION_python)
CONFIGURE_python ?=	python --config=/usr/local/bin/python3-config
INSTALL_python ?=	python3-install
COPY_python =

VERSION_ruby ?=		3.1
CONTAINER_ruby ?=	ruby:$(VERSION_ruby)
CONFIGURE_ruby ?=	ruby
INSTALL_ruby ?=		ruby-install
COPY_ruby =			RUN gem install rack

default:
	@echo "valid targets: all build dockerfiles clean"

MODVERSIONS = $(foreach module,$(MODULES),$(module)$(VERSION_$(module)))

modname = $(shell echo $1 | /usr/bin/tr -d '.01234567890-')

dockerfiles: $(addprefix Dockerfile., $(MODVERSIONS))
build: $(addprefix build-,$(MODVERSIONS))

Dockerfile.%: ../../version
	@echo "===> Building $@"
	cat template.Dockerfile | sed \
			-e 's,@@VERSION@@,$(VERSION),g' \
			-e 's,@@CONTAINER@@,$(CONTAINER_$(call modname, $*)),g' \
			-e 's,@@CONFIGURE@@,$(CONFIGURE_$(call modname, $*)),g' \
			-e 's,@@INSTALL@@,$(INSTALL_$(call modname, $*)),g' \
			-e 's,@@COPY@@,$(COPY_$(call modname, $*)),g' \
			> $@

build-%: Dockerfile.%
	docker pull $(CONTAINER_$(call modname, $*))
	docker build --no-cache -t unit:$(VERSION)-$* -f Dockerfile.$* .

all: $(addprefix Dockerfile., $(MODVERSIONS))

clean:
	rm -f $(addprefix Dockerfile., $(MODVERSIONS))
	rm -rf $(EXPORT_DIR)

.PHONY: default build dockerfiles clean