CoolFace
Apppublic

Anash/ats-tracker

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1# Use the official Python image as the base image2FROM python:3.10.123 4# Set the working directory inside the container5WORKDIR /app6 7# Copy the requirements file into the container at /app8COPY requirements.txt /app/9 10# Install any dependencies11RUN pip install --upgrade pip && pip install -r requirements.txt12 13# Copy the rest of the application code into the container at /app14COPY . /app/15 16# Expose the port that FastAPI will run on17EXPOSE 800018 19# Command to run the application20CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8001"]21