File tree 9 files changed +11
-11
lines changed
9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM eclipse-temurin:21@sha256:e538e34d1df871c9b7da571582cdc49538f1eaee1dacbfb317a3e7f54abeebae AS builder
15
+ FROM eclipse-temurin:21@sha256:b5fc642f67dbbd1c4ce811388801cb8480aaca8aa9e56fd6dcda362cfea113f1 AS builder
16
16
17
17
WORKDIR /app
18
18
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
# https://mcr.microsoft.com/product/dotnet/sdk
16
- FROM mcr.microsoft.com/dotnet/sdk:8.0.402 -noble@sha256:96bd4e90b80d82f8e77512ec0893d7ae18b4d2af332b9e68ed575c9842cc175c AS builder
16
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.404 -noble@sha256:18fa8181d90bfe0d677a005e77086f77fc70af9f84739de57762b51ebab747d3 AS builder
17
17
WORKDIR /app
18
18
COPY cartservice.csproj .
19
19
RUN dotnet restore cartservice.csproj \
@@ -29,7 +29,7 @@ RUN dotnet publish cartservice.csproj \
29
29
-o /cartservice
30
30
31
31
# https://mcr.microsoft.com/product/dotnet/runtime-deps
32
- FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.8 -noble-chiseled@sha256:7c86350773464d70bd15b2804c0e52f6c0f6b27d05d0fc607ff16abeb84dedd0
32
+ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.11 -noble-chiseled@sha256:df82f5ec8647c20714adf52f9b9c4ffe25bd568f1ba00ba30ccb6391e640518d
33
33
34
34
WORKDIR /app
35
35
COPY --from=builder /cartservice .
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM mcr.microsoft.com/dotnet/sdk:9.0@sha256:5d337a63df98dc6b846084e12d903bfdf17539ee57032721d619ae444e7482b7 AS build
15
+ FROM mcr.microsoft.com/dotnet/sdk:9.0@sha256:7d24e90a392e88eb56093e4eb325ff883ad609382a55d42f17fd557b997022ca AS build
16
16
WORKDIR /app
17
17
COPY . .
18
18
RUN dotnet restore cartservice.csproj
@@ -22,7 +22,7 @@ FROM build AS publish
22
22
RUN dotnet publish cartservice.csproj -c Debug -o /out
23
23
24
24
# Building final image used in running container
25
- FROM mcr.microsoft.com/dotnet/aspnet:9.0@sha256:536ba20cfb467dae1307be48a5a90d6bc3b1a609c9ecbf49bb22b0b4211f897e AS final
25
+ FROM mcr.microsoft.com/dotnet/aspnet:9.0@sha256:372b16214ae67e3626a5b1513ade4a530eae10c172d56ce696163b046565fa46 AS final
26
26
# Installing procps on the container to enable debugging of .NET Core
27
27
RUN apt-get update \
28
28
&& apt-get install -y unzip procps wget
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.23.1 -alpine@sha256:ac67716dd016429be8d4c2c53a248d7bcdf06d34127d3dc451bda6aa5a87bc06 AS builder
15
+ FROM golang:1.23.2 -alpine@sha256:9dd2625a1ff2859b8d8b01d8f7822c0f528942fe56cfe7a1e7c38d3b8d72d679 AS builder
16
16
WORKDIR /src
17
17
18
18
# restore dependencies
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ COPY package*.json ./
27
27
28
28
RUN npm install --only=production
29
29
30
- FROM alpine:3.20.3@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
30
+ FROM alpine:3.20.3@sha256:1e42bbe2508154c9126d48c2b8a75420c3544343bf86fd041fb7527e017a4b4a
31
31
32
32
RUN apk add --no-cache nodejs
33
33
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.23.1 -alpine@sha256:ac67716dd016429be8d4c2c53a248d7bcdf06d34127d3dc451bda6aa5a87bc06 AS builder
15
+ FROM golang:1.23.2 -alpine@sha256:9dd2625a1ff2859b8d8b01d8f7822c0f528942fe56cfe7a1e7c38d3b8d72d679 AS builder
16
16
WORKDIR /src
17
17
18
18
# restore dependencies
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ COPY package*.json ./
27
27
28
28
RUN npm install --only=production
29
29
30
- FROM alpine:3.20.3@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
30
+ FROM alpine:3.20.3@sha256:1e42bbe2508154c9126d48c2b8a75420c3544343bf86fd041fb7527e017a4b4a
31
31
32
32
RUN apk add --no-cache nodejs
33
33
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.23.1 -alpine@sha256:ac67716dd016429be8d4c2c53a248d7bcdf06d34127d3dc451bda6aa5a87bc06 AS builder
15
+ FROM golang:1.23.2 -alpine@sha256:9dd2625a1ff2859b8d8b01d8f7822c0f528942fe56cfe7a1e7c38d3b8d72d679 AS builder
16
16
17
17
WORKDIR /src
18
18
# restore dependencies
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.23.1 -alpine@sha256:ac67716dd016429be8d4c2c53a248d7bcdf06d34127d3dc451bda6aa5a87bc06 AS builder
15
+ FROM golang:1.23.2 -alpine@sha256:9dd2625a1ff2859b8d8b01d8f7822c0f528942fe56cfe7a1e7c38d3b8d72d679 AS builder
16
16
WORKDIR /src
17
17
18
18
# restore dependencies
You can’t perform that action at this time.
0 commit comments