Skip to content

Commit 2cf721a

Browse files
committed
fix(build): bump docker image + update certs
1 parent c61bcf4 commit 2cf721a

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/ExtractBundler.Console/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0.4-bookworm-slim-amd64
1+
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0.9-bookworm-slim-amd64
22

33
# create work dir and set permissions as WORKDIR sets permissions as root
44
RUN mkdir /app && chown -R app:app /app
@@ -11,9 +11,11 @@ COPY / /app
1111
WORKDIR /app
1212

1313
RUN apt-get update && \
14-
apt-get install curl jq -y && \
15-
chmod +x ./init.sh && \
16-
apt-get clean
14+
apt-get upgrade -y ca-certificates && \
15+
apt-get install curl jq openssl ca-certificates -y && \
16+
c_rehash /etc/ssl/certs && \
17+
update-ca-certificates --fresh --verbose && \
18+
chmod +x ./init.sh
1719

1820
ENV CORECLR_ENABLE_PROFILING=1
1921
ENV CORECLR_PROFILER={846F5F1C-F9AE-4B07-969E-05C26BC060D8}

0 commit comments

Comments
 (0)