blob: b4f97b2cd3eedc7d8a8aab2e7c68b2e906cd2e0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
FROM mcr.microsoft.com/dotnet/sdk:8.0
WORKDIR /App
ENV FLAG="CSCG{TESTFLAG}"
# Copy everything
COPY PhotoEditor/ ./
# Restore as distinct layers
RUN dotnet restore
# Build and publish a release
ENTRYPOINT ["bash", "-c", "echo $FLAG > ./flag && dotnet run --urls=http://0.0.0.0:1024"]
|