diff --git a/WebGui/DOCKERFILE b/WebGui/DOCKERFILE index 1227184..1c44a71 100644 --- a/WebGui/DOCKERFILE +++ b/WebGui/DOCKERFILE @@ -11,7 +11,7 @@ COPY ./Helloworld.py /app/ EXPOSE 5000 # Install any dependencies -RUN pip install --no-cache-dir Flask==2.1.2 +RUN pip install --no-cache-dir flask # Set the entry point CMD ["python", "Helloworld.py"] diff --git a/docker-compose.yml b/docker-compose.yml index b68c3e6..b16dd22 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: build: context: ./WebGui dockerfile: ./DOCKERFILE - port: + ports: - '80:5000' # database: