0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-16 06:51:08 +01:00
construct/docker/alpine/3.16/full/Dockerfile

22 lines
273 B
Docker
Raw Normal View History

ARG acct
ARG repo
FROM ${acct}/${repo}:alpine-3.16-base-${TARGETARCH}
2022-07-25 22:15:36 +02:00
ENV packages="\
freetype \
graphicsmagick \
libpng \
"
ENV packages_dev="\
${packages_dev} \
freetype-dev \
graphicsmagick-dev \
libpng-dev \
"
RUN true \
&& apk add --no-cache ${packages} \
&& true