Skip to content

Commit 749bbc6

Browse files
committed
RE1-T121 PR#397 fixes
1 parent a36bd99 commit 749bbc6

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

Web/Resgrid.Web.Eventing/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7
12
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
23
ARG BUILD_VERSION=3.5.0
34

@@ -26,7 +27,7 @@ WORKDIR "/src/Web/Resgrid.Web.Eventing"
2627
FROM build AS publish
2728
ARG BUILD_VERSION
2829
RUN dotnet publish "Resgrid.Web.Eventing.csproj" -c Release -o /app/publish -p:Version=${BUILD_VERSION}
29-
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
30+
ADD --checksum=sha256:2241be671073520e028b2f12df1e9ef0419014cffb5670b7a80b2080804be17d https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
3031
RUN chmod +x /app/publish/wait
3132

3233
FROM base AS final

Web/Resgrid.Web.Mcp/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7
12
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
23

34
ARG BUILD_VERSION=3.5.0
@@ -37,7 +38,7 @@ WORKDIR "/src/Web/Resgrid.Web.Mcp"
3738
FROM build AS publish
3839
ARG BUILD_VERSION
3940
RUN dotnet publish "Resgrid.Web.Mcp.csproj" -c Release -o /app/publish -p:Version=${BUILD_VERSION}
40-
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
41+
ADD --checksum=sha256:2241be671073520e028b2f12df1e9ef0419014cffb5670b7a80b2080804be17d https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
4142
RUN chmod +x /app/publish/wait
4243

4344
FROM base AS final

Web/Resgrid.Web.Services/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7
12
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
23

34
ARG BUILD_VERSION=3.5.0
@@ -37,7 +38,7 @@ WORKDIR "/src/Web/Resgrid.Web.Services"
3738
FROM build AS publish
3839
ARG BUILD_VERSION
3940
RUN dotnet publish "Resgrid.Web.Services.csproj" -c Release -o /app/publish -p:Version=${BUILD_VERSION}
40-
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
41+
ADD --checksum=sha256:2241be671073520e028b2f12df1e9ef0419014cffb5670b7a80b2080804be17d https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
4142
RUN chmod +x /app/publish/wait
4243

4344
FROM base AS final

Web/Resgrid.Web/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7
12
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
23
ARG BUILD_VERSION=3.5.0
34

@@ -55,7 +56,7 @@ RUN for i in 1 2 3; do libman restore && break || { echo "libman restore attempt
5556
ENV SKIP_LIBMAN_RESTORE=1
5657
RUN dotnet publish "Resgrid.Web.csproj" -c Release -o /app/publish -p:Version=${BUILD_VERSION}
5758
## Download the wait script in the build stage where a shell is available
58-
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
59+
ADD --checksum=sha256:2241be671073520e028b2f12df1e9ef0419014cffb5670b7a80b2080804be17d https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
5960
RUN chmod +x /app/publish/wait
6061

6162
FROM base AS final

Workers/Resgrid.Workers.Console/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# syntax=docker/dockerfile:1.7
12
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
23
ARG BUILD_VERSION=3.5.0
34

@@ -37,7 +38,7 @@ WORKDIR "/src/Workers/Resgrid.Workers.Console"
3738
FROM build AS publish
3839
ARG BUILD_VERSION
3940
RUN dotnet publish "Resgrid.Workers.Console.csproj" -c Release -o /app/publish -p:Version=${BUILD_VERSION}
40-
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
41+
ADD --checksum=sha256:2241be671073520e028b2f12df1e9ef0419014cffb5670b7a80b2080804be17d https://github.com/ufoscout/docker-compose-wait/releases/download/2.12.1/wait /app/publish/wait
4142
RUN chmod +x /app/publish/wait
4243

4344
## Install wkhtmltopdf and capture its runtime libraries

0 commit comments

Comments
 (0)