From 3a1c45be460b8d2e33a834358e46048e54e0a024 Mon Sep 17 00:00:00 2001 From: Kevin Roberto Perdomo Date: Sat, 6 Apr 2024 16:51:55 -0400 Subject: [PATCH] Added Dockerfile which takes base Python image, installed pipx & fabric --- Dockerfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5491ad3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +FROM python:3.12.2-slim + +# Install required packages +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + git \ + build-essential \ + ffmpeg \ + && rm -rf /var/lib/apt/lists/* + +# Install pipx +RUN python3 -m pip install --upgrade pip \ + && python3 -m pip install --user pipx \ + && python3 -m pipx ensurepath + +# Set up work directory +WORKDIR /app + +# Clone the repository and install its dependencies +RUN git clone https://github.com/danielmiessler/fabric.git \ + && python3 -m pipx install ./fabric + +# Set the entrypoint +ENTRYPOINT ["/usr/bin/bash"] \ No newline at end of file