diff --git a/Dockerfile.dash b/Dockerfile.dash index 84cc623..b147e08 100644 --- a/Dockerfile.dash +++ b/Dockerfile.dash @@ -19,10 +19,10 @@ RUN useradd appuser && chown -R appuser /app USER appuser # Copy the rest of the application code -COPY --from=builder /app . +COPY --from=builder /app/src/visualization /app # Expose the port that the Dash app runs on EXPOSE 8050 # Run the Dash app -CMD ["python", "app.py"] +CMD ["python", "dashboard.py"]