Format Dockerfile

This commit is contained in:
Daniel J. Summers 2025-02-03 07:55:37 -05:00
parent c9ccfe8b68
commit 0c1285eaa7

View File

@ -1,11 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
WORKDIR /pt WORKDIR /pt
COPY ./PrayerTracker.sln ./ COPY ./PrayerTracker.sln ./
COPY ./Directory.Build.props ./ COPY ./Directory.Build.props ./
COPY ./PrayerTracker/PrayerTracker.fsproj ./PrayerTracker/ COPY ./Data/PrayerTracker.Data.fsproj ./Data/
COPY ./Data/PrayerTracker.Data.fsproj ./Data/ COPY ./UI/PrayerTracker.UI.fsproj ./UI/
COPY ./Tests/PrayerTracker.Tests.fsproj ./Tests/ COPY ./PrayerTracker/PrayerTracker.fsproj ./PrayerTracker/
COPY ./UI/PrayerTracker.UI.fsproj ./UI/ COPY ./Tests/PrayerTracker.Tests.fsproj ./Tests/
RUN dotnet restore RUN dotnet restore
COPY . ./ COPY . ./