2023-11-11 16:28:17 -08:00
|
|
|
# Ubuntu 22.04 LTS supported until April 2027
|
2023-11-11 16:24:28 -08:00
|
|
|
FROM ubuntu:22.04 AS common
|
2022-01-05 15:35:12 -08:00
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
COPY install-common.bash /build/
|
|
|
|
RUN ./install-common.bash
|
|
|
|
|
2023-10-06 22:01:38 -07:00
|
|
|
# Add an intermediate tag so that it is possible to execute debugging
|
|
|
|
# code before formatter installation. This is necessary because with
|
|
|
|
# the newer docker build based on buildkit, you can't access
|
|
|
|
# intermediate image layers by default anymore.
|
|
|
|
FROM common
|
2022-01-05 15:35:12 -08:00
|
|
|
ARG FORMATTERS
|
|
|
|
COPY install-formatters.bash /build/
|
|
|
|
COPY installers /build/installers/
|
|
|
|
RUN ./install-formatters.bash
|
|
|
|
|
|
|
|
WORKDIR /src
|