galaxy-import-role/Dockerfile

10 lines
179 B
Docker
Raw Normal View History

2023-03-09 12:03:14 +00:00
# syntax=docker/dockerfile:1.2
2023-07-17 21:44:25 +00:00
FROM python:alpine
2023-03-09 12:03:14 +00:00
2023-07-17 21:31:42 +00:00
RUN pip3 install --upgrade pip
2023-03-09 12:03:14 +00:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod 555 /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]