diff --git a/DockerExporter.csproj b/DockerExporter.csproj index 32408a9..6ce6505 100644 --- a/DockerExporter.csproj +++ b/DockerExporter.csproj @@ -24,7 +24,7 @@ - + diff --git a/Dockerfile b/Dockerfile index 5249fa0..9bd5f3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM /debian:12-slim AS build +FROM 192.168.248.2:5000/debian:12-slim AS build WORKDIR /app # Separate layers here to avoid redoing dependencies on code change. @@ -10,7 +10,7 @@ RUN dotnet restore COPY . . RUN dotnet publish -r linux-musl-x64 -c Release -o out -FROM /debian:12-slim AS runtime +FROM 192.168.248.2:5000/debian:12-slim AS runtime WORKDIR /app COPY --from=build /app/out .