Skip to content

Commit

Permalink
Fix Dockerfile again
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Oct 30, 2020
1 parent a9991b5 commit 4c1db1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ARG SQUIDEX__VERSION=4.0.0

WORKDIR /src

# Copy nuget project files.
COPY backend/*.sln ./

# Copy the main source project files
COPY backend/src/*/*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p src/${file%.*}/ && mv $file src/${file%.*}/; done
Expand Down

0 comments on commit 4c1db1f

Please sign in to comment.