Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Highfire1 committed Nov 4, 2024
2 parents 7c37123 + 914ca79 commit 451ed93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,4 +740,4 @@ def _generatePreBuilds(self) -> None:
# nonce = "7c0c2d0f29"
transfers = getTransferInformation(use_cache=False)

# c.updateLatestSemester()
# c.updateLatestSemester()
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM python:3-slim as build

RUN apt-get update && apt-get install -y g++

# install requirements
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt --no-cache-dir option
Expand All @@ -13,4 +15,4 @@ COPY main.py main.py
COPY api.py api.py

# run code
CMD ["python3", "-u", "main.py"]
CMD ["python3", "-u", "main.py"]

0 comments on commit 451ed93

Please sign in to comment.