summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-22 12:46:00 +1000
committerJake Mannens <jake@asger.xyz>2026-05-23 22:13:00 +1000
commit4ea3ddb38d010c2f85c22b7f1c3f2d7e0c1355e3 (patch)
tree90af9203059d645eb77216f1a091722ee9702438 /Dockerfile
parent6de5d7f5364fe1d54703da6d6b7cb08ea26e939f (diff)
Initial commitwasm-oldserver
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 7769bf4..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,16 +0,0 @@
-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" ]