Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/archive_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def analyze_sources(self):
app = QApplication(sys.argv)
ex = ArchiveGUI()
ex.show()
sys.exit(app.exec_())
sys.exit(app.exec_())
2 changes: 1 addition & 1 deletion infra/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Base image
FROM python:3.9-slim

Expand All @@ -9,6 +8,7 @@ WORKDIR /app
COPY . .

# Install dependencies
RUN apt-get update && apt-get install -y libgl1-mesa-glx
RUN pip install -r requirements.txt

# Expose application port
Expand Down
Loading