conductor-worker-python/docker/provisioning/Dockerfile

9 lines
283 B
Docker
Raw Normal View History

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
COPY ./docker/base/entrypoint.sh /app/
ENTRYPOINT ["/app/entrypoint.sh"]