Skip to content

Commit

Permalink
fix docker file to point to dash app
Browse files Browse the repository at this point in the history
  • Loading branch information
lfunderburk committed May 19, 2023
1 parent d2d1b4b commit 71c7cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.dash
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 71c7cfb

Please sign in to comment.