tcc/ASP.NET/Dockerfile

31 lines
805 B
Docker
Raw Normal View History

2023-08-24 17:25:54 +00:00
FROM mcr.microsoft.com/dotnet/sdk:6.0-bullseye-slim AS build-env
2023-08-23 14:01:09 +00:00
WORKDIR /App
# Copy everything
2023-08-29 19:05:19 +00:00
RUN apt update && apt install wget -y
2023-08-23 14:01:09 +00:00
COPY * .
# Restore as distinct layers
RUN dotnet restore
# Build a release
RUN dotnet build -c Release -o out
2023-08-29 19:05:19 +00:00
RUN cd out && \
2023-09-01 18:14:54 +00:00
wget https://files.ivanch.me/api/public/dl/Dj0gkp-m/small-image.png && \
wget https://files.ivanch.me/api/public/dl/FqHEPM1Q/big-image.png && \
2023-08-29 18:55:28 +00:00
wget https://files.ivanch.me/api/public/dl/nTAYqZwD/video.mp4 && \
rm -rf runtimes && \
2023-08-29 19:05:19 +00:00
mkdir -p ./static && \
2023-09-01 18:14:54 +00:00
mv small-image.png ./static && \
mv big-image.png ./static && \
2023-08-29 18:55:28 +00:00
mv video.mp4 ./static
2023-08-24 17:25:54 +00:00
2023-08-29 19:05:19 +00:00
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
WORKDIR /App
COPY --from=build-env /App/out .
2023-08-23 14:16:36 +00:00
ENTRYPOINT ["dotnet", "/App/TCC.APP.dll"]