AWW / Dockerfile
aiMAmmaM's picture
Create Dockerfile
2071098 verified
Raw
History Blame Contribute Delete
543 Bytes
FROM python:3.10-slim-buster
# Set the working directory in the container to /appgt
WORKDIR /app
# Install git
RUN apt-get update && apt-get install -y git
# Clone the repository
RUN git clone https://github.com/Urlo30/Karate.git .
# Copy the local config.json file to the container
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7960
# Run run.py when the container launches
CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "7960", "--workers", "4"]