-
Notifications
You must be signed in to change notification settings - Fork 324
/
Dockerfile
218 lines (165 loc) · 7.98 KB
/
Dockerfile
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
###
# Build
###
FROM public.ecr.aws/docker/library/debian:bookworm AS build
ARG TARGETARCH
RUN mkdir -p /app/build /build/.task /build/build/work
RUN ln -snf /build/.task /app/.task
RUN ln -snf /build/build/work /app/build/work
WORKDIR /app
ENV PNPM_HOME=/usr/local/pnpm
COPY build/package_dependencies.sh /app/build/package_dependencies.sh
COPY tasks/helpers.sh tasks/install-system-build-dependencies /app/tasks/
COPY tasks/helpers/detect_os_release.sh tasks/helpers/lua.sh /app/tasks/helpers/
RUN /app/tasks/install-system-build-dependencies
COPY Makefile.in Taskfile.yml configure /app/
COPY tasks/bootstrap-* /app/tasks/
RUN ./configure
COPY tasks/clean/dev /app/tasks/clean/dev
COPY tasks/deps/perp /app/tasks/deps/
RUN make deps:perp && make clean:dev
COPY build/patches/openresty* /app/build/patches/
COPY tasks/deps/openresty /app/tasks/deps/
RUN make deps:openresty && make clean:dev
COPY tasks/deps/trafficserver /app/tasks/deps/
RUN make deps:trafficserver && make clean:dev
COPY tasks/deps/fluent-bit /app/tasks/deps/
RUN make deps:fluent-bit && make clean:dev
COPY src/api-umbrella-git-1.rockspec src/luarocks.lock /app/src/
COPY tasks/deps/luarocks /app/tasks/deps/
RUN make deps:luarocks && make clean:dev
COPY tasks/build-deps/crane /app/tasks/build-deps/
COPY tasks/deps/envoy /app/tasks/deps/
RUN make deps:envoy && make clean:dev
COPY tasks/deps /app/tasks/deps
RUN make deps && make clean:dev
COPY tasks/build-deps /app/tasks/build-deps
RUN make build-deps && make clean:dev
COPY src/api-umbrella/example-website/package.json src/api-umbrella/example-website/pnpm-lock.yaml /app/src/api-umbrella/example-website/
COPY tasks/app-deps/example-website/pnpm /app/tasks/app-deps/example-website/
RUN make app-deps:example-website:pnpm && make clean:dev
COPY src/api-umbrella/admin-ui/package.json src/api-umbrella/admin-ui/pnpm-lock.yaml /app/src/api-umbrella/admin-ui/
COPY tasks/app-deps/admin-ui/pnpm /app/tasks/app-deps/admin-ui/
RUN make app-deps:admin-ui:pnpm && make clean:dev
COPY src/api-umbrella/web-app/package.json src/api-umbrella/web-app/pnpm-lock.yaml /app/src/api-umbrella/web-app/
COPY tasks/app-deps/web-app/pnpm /app/tasks/app-deps/web-app/
RUN make app-deps:web-app:pnpm && make clean:dev
COPY build/patches/lrexlib-pcre2.patch /app/build/patches/
COPY tasks/app-deps/luarocks /app/tasks/app-deps/
RUN make app-deps:luarocks && make clean:dev
COPY tasks/app-deps /app/tasks/app-deps
RUN make app-deps && make clean:dev
COPY src/api-umbrella/example-website /app/src/api-umbrella/example-website
COPY tasks/app/example-website/build /app/tasks/app/example-website/
RUN make app:example-website:build && make clean:dev
COPY src/api-umbrella/web-app/assets /app/src/api-umbrella/web-app/assets
COPY src/api-umbrella/web-app/webpack.config.js /app/src/api-umbrella/web-app/webpack.config.js
COPY tasks/app/web-app/precompile /app/tasks/app/web-app/
RUN make app:web-app:precompile && make clean:dev
COPY src/api-umbrella/admin-ui /app/src/api-umbrella/admin-ui
COPY tasks/app/admin-ui/build /app/tasks/app/admin-ui/
RUN make app:admin-ui:build && make clean:dev
COPY LICENSE.txt /app/
COPY bin /app/bin
COPY config /app/config
COPY db /app/db
COPY locale /app/locale
COPY src /app/src
COPY tasks /app/tasks
COPY templates /app/templates
RUN make && make clean:dev
###
# Test
###
FROM public.ecr.aws/docker/library/debian:bookworm AS test
ARG TARGETARCH
RUN mkdir -p /app/build /build/.task /build/build/work
RUN ln -snf /build/.task /app/.task
RUN ln -snf /build/build/work /app/build/work
WORKDIR /app
ENV PNPM_HOME=/usr/local/pnpm
COPY build/package_dependencies.sh /app/build/package_dependencies.sh
COPY tasks/helpers.sh tasks/install-system-build-dependencies /app/tasks/
COPY tasks/helpers/detect_os_release.sh tasks/helpers/lua.sh /app/tasks/helpers/
RUN INSTALL_TEST_DEPENDENCIES=true /app/tasks/install-system-build-dependencies
COPY Makefile.in Taskfile.yml configure /app/
COPY tasks/bootstrap-* /app/tasks/
RUN ./configure
COPY tasks/clean/dev /app/tasks/clean/dev
COPY --from=build /build /build
COPY Gemfile Gemfile.lock /app/
COPY tasks/test-deps/bundle /app/tasks/test-deps/
RUN make test-deps:bundle && make clean:dev
COPY test/api-umbrella-test-git-1.rockspec test/luarocks.lock /app/test/
COPY tasks/deps/luarocks tasks/deps/openresty /app/tasks/deps/
COPY tasks/test-deps /app/tasks/test-deps
RUN make test-deps && make clean:dev
RUN groupadd -r api-umbrella && \
useradd -r -g api-umbrella -s /sbin/nologin -d /opt/api-umbrella -c "API Umbrella user" api-umbrella
COPY --from=build /app /app
COPY .luacheckrc .rubocop.yml Thorfile /app/
COPY build/package /app/build/package
COPY scripts /app/scripts
COPY test /app/test
RUN ln -snf "/app/build/work/tasks/app-deps/admin-ui/pnpm/_persist/node_modules" "/app/src/api-umbrella/admin-ui/node_modules"
RUN ln -snf "/app/build/work/tasks/app-deps/example-website/pnpm/_persist/node_modules" "/app/src/api-umbrella/example-website/node_modules"
RUN ln -snf "/app/build/work/tasks/app-deps/web-app/pnpm/_persist/node_modules" "/app/src/api-umbrella/web-app/node_modules"
ENV \
PATH="/app/bin:/build/build/work/dev-env/sbin:/build/build/work/dev-env/bin:/build/build/work/test-env/sbin:/build/build/work/test-env/bin:/build/build/work/stage/opt/api-umbrella/sbin:/build/build/work/stage/opt/api-umbrella/bin:/build/build/work/stage/opt/api-umbrella/embedded/sbin:/build/build/work/stage/opt/api-umbrella/embedded/bin:${PATH}" \
API_UMBRELLA_ROOT="/build/build/work/stage/opt/api-umbrella"
###
# Install
###
FROM public.ecr.aws/docker/library/debian:bookworm AS install
RUN apt-get update && \
apt-get -y install git rsync && \
rm -rf /var/lib/apt/lists/*
COPY build/package/files /tmp/install/build/package/files
COPY build/package/scripts/after-install /tmp/install/build/package/scripts/after-install
COPY --from=build /app/tasks/helpers.sh /tmp/install/tasks/helpers.sh
COPY --from=build /app/tasks/install /tmp/install/tasks/install
COPY --from=build /app/build/work /tmp/install/build/work
WORKDIR /tmp/install
RUN DESTDIR="/build/install-destdir" PREFIX=/opt/api-umbrella ./tasks/install
###
# Runtime
###
FROM public.ecr.aws/docker/library/debian:bookworm AS runtime
COPY --from=install /build/install-destdir /
COPY build/package/scripts/after-install /tmp/install/build/package/scripts/after-install
COPY --from=build /app/build/package_dependencies.sh /tmp/install/build/package_dependencies.sh
COPY --from=build /app/tasks/helpers/detect_os_release.sh /tmp/install/tasks/helpers/detect_os_release.sh
RUN set -x && \
apt-get update && \
bash -c 'source /tmp/install/build/package_dependencies.sh && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install "${core_runtime_dependencies[@]}"' && \
/tmp/install/build/package/scripts/after-install 1 && \
rm -rf /tmp/install /var/lib/apt/lists/*
EXPOSE 80 443
CMD ["api-umbrella", "run"]
###
# Build - envoy-config-wrapper
###
FROM rust:1-slim-bookworm AS envoy-config-wrapper-build
# Use the musl target for static binaries that will work in the distroless
# image.
RUN rustup target add "$(arch)-unknown-linux-musl"
COPY Cargo.toml ./
COPY src/api-umbrella/bin/envoy-config-wrapper.rs ./src/api-umbrella/bin/
RUN cargo build --release --target "$(arch)-unknown-linux-musl"
###
# Runtime - Egress Only
# https://github.com/envoyproxy/envoy/blob/release/v1.27/ci/Dockerfile-envoy#L60-L69
###
FROM gcr.io/distroless/base-nossl-debian12:nonroot AS runtime-egress
# Create the needed directories as the non-root user, and then switch back to
# the defalt workdir.
WORKDIR /etc/envoy
WORKDIR /var/run/envoy
WORKDIR /home/nonroot
# Copy Envoy and our config wrapper binary in so that's all that's present in
# this distroless image.
COPY --from=envoy-config-wrapper-build --chown=0:0 --chmod=755 ./target/*/release/envoy-config-wrapper /usr/local/bin/
COPY --from=build --chown=0:0 --chmod=755 /app/build/work/stage/opt/api-umbrella/embedded/bin/envoy /usr/local/bin/
EXPOSE 14001
ENTRYPOINT ["/usr/local/bin/envoy-config-wrapper"]
CMD ["-c", "/etc/envoy/envoy.yaml", "--use-dynamic-base-id", "--base-id-path", "/var/run/envoy/base-id"]