From 96b1ef832b7b4e3dd7ed0456e2855b544a96dbcd Mon Sep 17 00:00:00 2001 From: Chris Schnaufer Date: Thu, 21 Oct 2021 15:00:05 -0700 Subject: [PATCH] Fixing issues found during testing --- Dockerfile | 5 ++++- src/WorkspaceTitlebar.css | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37dded7..b19881d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,6 +49,8 @@ COPY --from=build /app/react_frontend/build/* ./ # Install additional packages RUN apt-get update && \ apt-get install -y --no-install-recommends git && \ + apt-get install -y --no-install-recommends python3-dev && \ + apt-get install -y --no-install-recommends gcc g++ && \ apt-get autoremove -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* @@ -57,12 +59,13 @@ RUN apt-get update && \ COPY ./requirements.txt ./ RUN python3 -m pip install --upgrade --no-cache-dir pip RUN python3 -m pip install --upgrade --no-cache-dir -r requirements.txt +RUN python3 -m pip install --upgrade --no-cache-dir setuptools # Copy files to where we want them RUN mkdir templates && mv index.html templates/ COPY ./*.py ./*.sh ./ -COPY ./test_data ./test_data +# COPY ./test_data ./test_data # TODO: Get the pylint resource file # TODO: install testing environment (plot-base-rgb: 1.9) # TODO: install test images:https://data.cyverse.org/dav-anon/iplant/projects/aes/cct/diag/sample-data/sample_plot_images.zip and place in separate folders diff --git a/src/WorkspaceTitlebar.css b/src/WorkspaceTitlebar.css index 5c407cb..95fd528 100644 --- a/src/WorkspaceTitlebar.css +++ b/src/WorkspaceTitlebar.css @@ -4,6 +4,7 @@ flex-direction: row; align-content: space-between; align-items:stretch; + min-height: 40px; } .wt-header-back {