feat(docker-compose): добавлены параметры для fluentd async. Добавлены правила для последовательного разворачивания API.

This commit is contained in:
Mikhail Trubnikov
2025-11-17 16:10:21 +10:00
parent 4cb7f2f6d6
commit 806cd19861
17 changed files with 74 additions and 18 deletions

View File

@@ -1,6 +1,13 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM 10.99.253.167:8090/dotnet/aspnet:7.0 AS base
# CURL install
RUN rm /etc/apt/sources.list.d/debian.sources && \
echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bookworm main" > /etc/apt/sources.list && \
echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bookworm-updates main" >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y curl && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
EXPOSE 80