Skip to content

Commit

Permalink
fix: move bin license to .NET publish directory (#112)
Browse files Browse the repository at this point in the history
* fix: move bin license to .NET publish directory
  • Loading branch information
aleortega authored Apr 26, 2024
1 parent c620034 commit 323f7f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ COPY PiXYZ.sln ./
RUN dotnet publish -c Release -r win10-x64 -o ./publish --self-contained true
ARG VULKAN_DLL_PATH
COPY ${VULKAN_DLL_PATH} ./publish/vulkan-1.dll
COPY pixyz_license_decentraland.bin ./publish/pixyz_license_decentraland.bin

# bundle all apps
FROM mcr.microsoft.com/windows:ltsc2019
Expand All @@ -85,11 +86,12 @@ RUN setx /M PATH "%PATH%;C:/vulkan-sdt"

WORKDIR /app/api
COPY --from=dotnet-build /build/publish/ .
COPY pixyz_license_decentraland.bin ./pixyz_license_decentraland.bin

WORKDIR /app

COPY RoadCoordinates.json ./RoadCoordinates.json
COPY pixyz_license_decentraland.bin ./pixyz_license_decentraland.bin
COPY RoadCoordinates.json ./RoadCoordinates.json
COPY --from=scene-lod-build /scene-lod/dist ./scene-lod/dist
COPY --from=scene-lod-build /scene-lod/package.json ./scene-lod/
COPY --from=scene-lod-build /scene-lod/package-lock.json ./scene-lod/
Expand Down

0 comments on commit 323f7f8

Please sign in to comment.