LunarVim/utils/docker/Dockerfile

12 lines
164 B
Docker
Raw Normal View History

2021-07-31 06:34:01 +02:00
FROM python:3
SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
COPY script.sh /tmp/script.sh
2021-07-31 06:34:01 +02:00
RUN bash -c "/tmp/script.sh"
ENTRYPOINT ["/bin/bash"]