galaxy-import-role/Dockerfile

10 lines
186 B
Docker
Raw Normal View History

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" ]