diff --git a/API/FamilyTreeAPI/Dockerfile b/API/FamilyTreeAPI/Dockerfile index 7e024a9..fe64973 100644 --- a/API/FamilyTreeAPI/Dockerfile +++ b/API/FamilyTreeAPI/Dockerfile @@ -11,6 +11,20 @@ COPY . . WORKDIR "/src/FamilyTreeAPI" RUN dotnet build "./FamilyTreeAPI.csproj" -c Release -o /app/build +# create directory for import folder, and image folder +RUN mkdir /app_import + +RUN mkdir /app_images + +VOLUME /app_import + +VOLUME /app_images +# docker run -v my_path_name_volume_host:/app_import my_image_name +# docker run -v my_path_named_volume_host:/app_images my_image_name +# docker cp /home/user/my_app/config.json my_container:/app/config.json +# docker cp /home/user/my_app/data my_container:/app/data ### copy folder data +# docker cp mycontainer:/app/output.txt /home/user/documents/ + # This stage is used to publish the service project to be copied to the final stage FROM build AS publish diff --git a/UI/src/app/person/familylist.ts b/UI/src/app/person/familylist.ts index d8d942e..1904477 100644 --- a/UI/src/app/person/familylist.ts +++ b/UI/src/app/person/familylist.ts @@ -277,6 +277,7 @@ export class FamilyList implements OnInit, OnDestroy{ }, header: 'Person', width: '80%', + draggable: true, maximizable: true }); diff --git a/UI/src/app/pickperson/image.display.html b/UI/src/app/pickperson/image.display.html index 183a8b1..2888bbe 100644 --- a/UI/src/app/pickperson/image.display.html +++ b/UI/src/app/pickperson/image.display.html @@ -1,4 +1,4 @@ -Person Image +Person Image