CoolFace
Apppublic

ZealPyae/V2LinkDetection

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1# Use an official Python runtime as a parent image2FROM python:3.93 4# Set the working directory5WORKDIR /app6 7# Copy the current directory contents into the container at /app8COPY . /app9 10# Install any needed packages specified in requirements.txt11RUN pip install --no-cache-dir -r requirements.txt12 13# Make port 8000 available to the world outside this container14EXPOSE 800015 16# Run app.py when the container launches17CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]18