0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-20 03:43:47 +02:00
construct/docker/alpine/full/Dockerfile
2023-03-30 21:02:37 -07:00

25 lines
330 B
Docker

ARG acct
ARG repo
ARG dist_name
ARG dist_version
ARG machine
FROM ${acct}/${repo}:${dist_name}-${dist_version}-base-${machine}
ENV packages="\
freetype \
graphicsmagick \
libpng \
"
ENV packages_dev="\
${packages_dev} \
freetype-dev \
graphicsmagick-dev \
libpng-dev \
"
RUN true \
&& apk add --no-cache ${packages} \
&& true