mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 06:51:08 +01:00
21 lines
273 B
Docker
21 lines
273 B
Docker
ARG acct
|
|
ARG repo
|
|
|
|
FROM ${acct}/${repo}:alpine-3.16-base-${TARGETARCH}
|
|
|
|
ENV packages="\
|
|
freetype \
|
|
graphicsmagick \
|
|
libpng \
|
|
"
|
|
|
|
ENV packages_dev="\
|
|
${packages_dev} \
|
|
freetype-dev \
|
|
graphicsmagick-dev \
|
|
libpng-dev \
|
|
"
|
|
|
|
RUN true \
|
|
&& apk add --no-cache ${packages} \
|
|
&& true
|