2023-03-09 12:03:14 +00:00
|
|
|
# syntax=docker/dockerfile:1.2
|
2023-07-17 21:45:35 +00:00
|
|
|
FROM python:3.11
|
2023-03-09 12:03:14 +00:00
|
|
|
|
2023-07-18 07:26:40 +00:00
|
|
|
RUN pip3 install --upgrade ansible-core
|
2023-03-09 12:03:14 +00:00
|
|
|
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
|
|
|
|
RUN chmod 555 /entrypoint.sh
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|