CoolFace
Apppublic

devprasath/Report_Validation

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.102 3# Set work directory4WORKDIR /app5 6# Copy files7COPY . /app8 9# Install requirements10RUN pip install --no-cache-dir -r requirements.txt11 12# Expose Dash port13EXPOSE 786014 15# Run the app16CMD ["python", "app.py"]17