Skip to content
This repository was archived by the owner on Aug 31, 2024. It is now read-only.

Commit 93c0667

Browse files
committed
Fixing Dockerfile
1 parent 492b90f commit 93c0667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BuildStats/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build
22
WORKDIR /app
33

44
# Copy csproj and restore as distinct layers
5-
COPY src/*.fsproj ./
5+
COPY src/BuildStats/*.fsproj ./
66
RUN dotnet restore
77

88
# Copy everything else and build
9-
COPY src/. ./
9+
COPY src/BuildStats/. ./
1010
RUN dotnet publish -c Release -o published
1111

1212
# Build runtime image

0 commit comments

Comments
 (0)