2023-02-27 17:22:31 +00:00

19 lines
402 B
Docker

# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="homer, thelamer"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade \
ansible
COPY . /ansible
ENTRYPOINT [ "/ansible/entrypoint.sh" ]