fabric is an open-source framework for augmenting humans using AI. It provides a modular framework for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
999 B

FROM python:3.12.2-slim
# Install required packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git \
build-essential \
ffmpeg \
sudo\
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
# Create a non-root user
RUN useradd --create-home appuser \
&& echo "appuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/appuser \
&& chmod 0440 /etc/sudoers.d/appuser
# Switch to the non-root user
USER appuser
# Set up work directory
WORKDIR /home/appuser/app
# Install pipx
RUN python3 -m pip install --upgrade pip \
&& python3 -m pip install --user pipx \
&& python3 -m pipx ensurepath
# Clone the repository and install its dependencies
RUN git clone https://github.com/danielmiessler/fabric.git \
&& python3 -m pipx install ./fabric
# Set file permissions for the app directory
RUN chmod -R 755 /home/appuser/app
# Switch back to the non-root user
USER appuser
# Set the entrypoint
ENTRYPOINT ["/usr/bin/bash"]