Start migration to postgresql and other minor fixes and improvements

This commit is contained in:
Lucas Mathews
2024-06-08 20:59:00 +02:00
parent 43ffea728c
commit c79f54eda7
16 changed files with 59 additions and 330 deletions

View File

@@ -5,12 +5,12 @@ FROM python:3.12.3
LABEL maintainer="522499@student.fontys.nl"
WORKDIR /banking-system
WORKDIR /server
COPY / /banking-system/
COPY . /server
EXPOSE 81
RUN pip install --no-cache-dir --upgrade -r /banking-system/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
ENTRYPOINT ["python", "./api.py", "--host", "0.0.0.0", "--port", "81"]