2020-10-30 19:19:31 +01:00
|
|
|
FROM nubisware/nubisware-conductor-worker-py-base:latest
|
|
|
|
COPY ./docker/provisioning/requirements.txt /app/
|
|
|
|
RUN pip install -r /app/requirements.txt
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install packer
|
|
|
|
WORKDIR /app
|
2020-11-05 15:27:58 +01:00
|
|
|
COPY ./docker/provisioning/entrypoint.sh /app/
|
2020-10-30 19:19:31 +01:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|