2023-11-14 17:12:20 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS base
|
2021-04-09 19:11:48 +00:00
|
|
|
|
2019-10-31 12:25:49 +00:00
|
|
|
# Native libgdiplus dependencies
|
|
|
|
RUN apt-get update
|
2022-08-16 22:31:40 +00:00
|
|
|
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y --allow-unauthenticated libc6-dev libgdiplus libx11-dev fonts-roboto tzdata
|
2021-04-09 19:11:48 +00:00
|
|
|
|
2021-01-27 17:11:49 +00:00
|
|
|
# debian-specific?
|
|
|
|
#RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
#RUN ln -s /lib/x86_64-linux-gnu/libdl-2.24.so /lib/x86_64-linux-gnu/libdl.so
|
2021-04-09 19:11:48 +00:00
|
|
|
|
2019-10-31 12:25:49 +00:00
|
|
|
# Regular stuff
|
2021-04-09 19:11:48 +00:00
|
|
|
#COPY packages /root/.nuget/packages/
|
2019-08-24 15:46:10 +00:00
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
2021-04-09 19:11:48 +00:00
|
|
|
#RUN rm -rf ./packages
|
2022-03-05 15:10:32 +00:00
|
|
|
RUN git status
|
2022-03-06 12:26:32 +00:00
|
|
|
# Asks for user/pw otherwise..
|
2022-05-01 16:28:12 +00:00
|
|
|
RUN git remote set-url origin https://github.com/RPCS3/discord-bot.git
|
|
|
|
RUN git config --remove-section http."https://github.com/"
|
2019-10-31 12:25:49 +00:00
|
|
|
# Build and test everything
|
2021-04-09 19:11:48 +00:00
|
|
|
RUN dotnet restore "CompatBot/CompatBot.csproj"
|
2019-08-24 15:46:10 +00:00
|
|
|
RUN dotnet build "CompatBot/CompatBot.csproj" -c Release
|
|
|
|
ENV RUNNING_IN_DOCKER true
|
2020-07-30 12:06:50 +00:00
|
|
|
# Limit server GC to 512 MB heap max
|
2020-07-30 12:05:40 +00:00
|
|
|
ENV COMPlus_gcServer 1
|
2020-11-10 17:05:52 +00:00
|
|
|
# ENV COMPlus_GCHeapHardLimit 0x20000000
|
2019-08-24 15:46:10 +00:00
|
|
|
WORKDIR /src/CompatBot
|
|
|
|
RUN dotnet run -c Release --dry-run
|
2019-09-24 09:56:49 +00:00
|
|
|
ENTRYPOINT ["dotnet", "run", "-c", "Release", "CompatBot.csproj"]
|
2022-04-01 14:18:27 +00:00
|
|
|
#ENTRYPOINT ["/bin/bash"]
|