bisasimo/MF
0
1FROM python:3.10-slim-buster2 3# Set the working directory in the container to /app4WORKDIR /app5 6# Install git7RUN apt-get update && apt-get install -y git8 9# Clone the repository10RUN git clone https://github.com/bisasimo/UnHided.git .11 12# Copy the local config.json file to the container13 14# Install any needed packages specified in requirements.txt15RUN pip install --no-cache-dir -r requirements.txt16 17 18EXPOSE 888819 20# Run run.py when the container launches21CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "8888", "--workers", "4"]