returned back curl to iso

This commit is contained in:
ruberoid 2025-10-16 23:11:56 +04:00
parent 2862ee8ae3
commit eac9cb8d13

View File

@ -1,5 +1,9 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
# Install curl for healthcheck
RUN apt-get update && \
apt-get install -y --no-install-recommends curl && \
rm -rf /var/lib/apt/lists/*
EXPOSE 80
EXPOSE 443