devprasath/Report_Validation
0
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 