fix Dockerfile
Some checks failed
Build & Deploy Checkin Service / build (push) Failing after 9s

This commit is contained in:
Suphonchai Phoonsawat 2026-06-23 11:38:40 +07:00
parent 5f678b2898
commit 65ca175f98
2 changed files with 32 additions and 14 deletions

View file

@ -0,0 +1,24 @@
# Build artifacts
bin/
obj/
# IDE / tooling
Properties/
.vs/
.vscode/
.idea/
# Source control
.git/
.gitignore
# Documentation
*.md
# Docker
Dockerfile
.dockerignore
# OS files
.DS_Store
Thumbs.db

View file

@ -1,4 +1,4 @@
## See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
## See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
#
## This stage is used when running from VS in fast mode (Default for Debug configuration)
#FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base
@ -34,25 +34,19 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
# กำหนด working directory ภายใน container
WORKDIR /src
# คัดลอกไฟล์ .csproj และ restore dependencies
# COPY *.csproj ./
COPY . ./
RUN dotnet restore
# copy เฉพาะ .csproj ก่อน เพื่อใช้ layer caching (restore เร็ว เก็บ cache นาน)
COPY BMA.EHR.CheckInConsumer.csproj ./
RUN dotnet restore "BMA.EHR.CheckInConsumer.csproj"
# คัดลอกไฟล์ทั้งหมดและ build
# คัดลอก source ที่เหลือแล้ว publish
COPY . ./
RUN dotnet build -c Release -o /app/build
# WORKDIR "/src/BMA.EHR.CheckInConsumer"
# RUN dotnet build "BMA.EHR.CheckInConsumer.csproj" -c Release -o /app/build
RUN dotnet publish "BMA.EHR.CheckInConsumer.csproj" -c Release -o /app/publish /p:UseAppHost=false
# ใช้ stage ใหม่สำหรับการ runtime
# ใช้ stage ใหม่สำหรับ runtime (image เล็กลง)
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS runtime
# กำหนด working directory สำหรับ runtime
WORKDIR /app
# คัดลอกไฟล์จาก build stage มายัง runtime stage
COPY --from=build /app/build .
COPY --from=build /app/publish .
# ระบุ entry point ของแอปพลิเคชัน
ENTRYPOINT ["dotnet", "BMA.EHR.CheckInConsumer.dll"]