diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-03-17 03:04:36 +1100 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-07 12:32:37 +1000 |
| commit | c51ff4e755f009ca0bc8e935a92c04e583c4ee8a (patch) | |
| tree | 0a9a311c5404a96495df1047e613dc3aea3d0f15 /Dockerfile | |
Initial commit
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7769bf4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM mcr.microsoft.com/dotnet/sdk:10.0@sha256:f061e5a7532b36fa1d1b684857fe1f504ba92115b9934f154643266613c44c62 AS build +WORKDIR /App/Server + +COPY Server /App/Server +COPY ApiModels /App/ApiModels +RUN dotnet restore +RUN dotnet publish -o out + +FROM mcr.microsoft.com/dotnet/aspnet:10.0@sha256:ccdca44cd4f256d50187f920dc8ccc2a9ea7a8a4597ac1d51e08fddb2e3b3205 +RUN apt update +RUN apt install -y imagemagick tesseract-ocr tesseract-ocr-eng +RUN apt clean +RUN rm -rf /var/lib/apt/lists/* +WORKDIR /App +COPY --from=build /App/Server/out . +ENTRYPOINT [ "dotnet", "HyperBooru.dll" ] |
