Skip to content

Commit

Permalink
Merge pull request #39 from taylorbobaylor/37-error-400-new-error-tha…
Browse files Browse the repository at this point in the history
…t-i-am-getting

Update Dockerfile
  • Loading branch information
taylorbobaylor committed Mar 31, 2024
2 parents be436bf + 0a1d844 commit cc22c38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build

# Install Node.js
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
Expand All @@ -24,4 +24,4 @@ RUN dotnet publish "TrailerDownloader.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "TrailerDownloader.dll"]
ENTRYPOINT ["dotnet", "TrailerDownloader.dll"]

0 comments on commit cc22c38

Please sign in to comment.