mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-21 01:27:01 +02:00
20 lines
483 B
Docker
20 lines
483 B
Docker
#
|
|
# Dockerfile for jinjanator
|
|
#
|
|
|
|
FROM alpine:3.20
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache py3-pip \
|
|
&& mkdir -p ~/.config/pip/ \
|
|
&& echo -e '[global]\nbreak-system-packages = true' > ~/.config/pip/pip.conf \
|
|
&& pip3 install jinjanator \
|
|
jinjanator-plugin-ansible \
|
|
jinjanator-plugin-format-toml \
|
|
jinjanator-plugin-format-xml \
|
|
&& jinjanate --version
|
|
|
|
ENTRYPOINT ["jinjanate"]
|
|
CMD ["--help"]
|