Format Dockerfile

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

View File

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