mktools/misc/image/Dockerfile
vcarroy 65c1aa57fe
All checks were successful
Cadoles/mktools/pipeline/head This commit looks good
Cadoles/mktools/pipeline/pr-master This commit looks good
feat (docker) : add standalone docker image
2025-03-28 13:54:35 +01:00

22 lines
449 B
Docker

FROM alpine:3.21
RUN apk update --no-cache \
&& apk add --no-cache \
make \
curl \
bash \
git \
&& mkdir /mktools
COPY ./tasks/* mktools/
RUN touch /mktools/Makefile \
&& echo "-include /mktools/*.mk" >> /mktools/Makefile \
&& mkdir /code \
&& git config --global --add safe.directory /code
WORKDIR /code
COPY --chmod=550 ./misc/image/mktools /usr/local/bin/mktools
ENTRYPOINT [ "mktools" ]