Fix libman failing to restore JavaScript libs in Docker build

This commit is contained in:
James Chapman 2023-08-11 22:43:56 +01:00
parent dd31c7da5c
commit 95eb388c36
Signed by: jamsch0
GPG Key ID: 765FE58130277547

View File

@ -9,8 +9,8 @@ COPY */*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
RUN dotnet restore
COPY ./Groceries/libman.json ./
WORKDIR Groceries
COPY ./Groceries/libman.json ./
RUN dotnet libman restore
COPY . ../