fix: dockerfile и docker-compose

This commit is contained in:
mfnefd 2024-11-13 01:49:13 +04:00
parent 5adec563ac
commit 3ce4d6baf2
2 changed files with 15 additions and 15 deletions

View File

@ -9,20 +9,21 @@ ENV ASPNETCORE_URLS=http://+:5124
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
USER appuser
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
ARG configuration=Release
WORKDIR /src
COPY ["Cloud/Cloud.csproj", "Cloud/"]
RUN dotnet restore "Cloud/Cloud.csproj"
COPY ["Cloud.csproj", "."]
RUN dotnet restore "./Cloud.csproj"
COPY . .
WORKDIR "/src/Cloud"
RUN dotnet build "Cloud.csproj" -c $configuration -o /app/build
WORKDIR "/src/."
RUN dotnet build "./Cloud.csproj" -c $configuration -o /app/build
FROM build AS publish
ARG configuration=Release
RUN dotnet publish "Cloud.csproj" -c $configuration -o /app/publish /p:UseAppHost=false
RUN dotnet publish "./Cloud.csproj" -c $configuration -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Cloud.dll"]

View File

@ -1,22 +1,21 @@
services:
cloud:
build: ./Cloud/
ports:
ports:
- "5124:5124"
depends_on:
- postgres
postgres:
image: postgres:14
image: postgres:14
container_name: cucumber_database
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 12345
POSTGRES_DB: main_database
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 12345
POSTGRES_DB: main_database
ports:
- "5438:5432"
- "5438:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
driver: local
driver: local