Skip to content

Commit

Permalink
Fix web dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
girlpunk committed Mar 13, 2024
1 parent 99ddb5a commit 2b702f9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Dockerfile.Web
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,5 @@ RUN dotnet build "MediaFeeder.Web.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "MediaFeeder.Web.csproj" -c Release -o /app/publish

FROM base AS final
WORKDIR /app
FROM lipanski/docker-static-website:latest as final
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "MediaFeeder.Web.dll"]

0 comments on commit 2b702f9

Please sign in to comment.