Add Apr2025 Randomizer

This commit is contained in:
2025-03-06 10:29:23 -06:00
parent 83d860ef79
commit 7604c78db8
15 changed files with 422 additions and 76 deletions

View File

@@ -12,7 +12,10 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0-azurelinux3.0 AS final
EXPOSE 8080
EXPOSE 8081
RUN tdnf install -y python3
RUN tdnf install -y python3 wget unzip
RUN wget https://github.com/Alcaro/Flips/releases/download/v198/flips-linux.zip
RUN unzip flips-linux.zip -d /flips
RUN rm flips-linux.zip
RUN mkdir -p /randomizer/data
RUN touch /randomizer/data/base2current.json
@@ -30,6 +33,9 @@ RUN python3 -m pip install -r requirements.txt
COPY BaseRandomizer/ .
WORKDIR /apr2025_randomizer
COPY Apr2025Randomizer/ .
WORKDIR /app
COPY --from=build /app/publish .
COPY ALttPRandomizer/appsettings.Docker.json appsettings.json