There was an error while loading. Please reload this page.
1 parent c61bcf4 commit 2cf721aCopy full SHA for 2cf721a
1 file changed
src/ExtractBundler.Console/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM mcr.microsoft.com/dotnet/runtime-deps:9.0.4-bookworm-slim-amd64
+FROM mcr.microsoft.com/dotnet/runtime-deps:9.0.9-bookworm-slim-amd64
2
3
# create work dir and set permissions as WORKDIR sets permissions as root
4
RUN mkdir /app && chown -R app:app /app
@@ -11,9 +11,11 @@ COPY / /app
11
WORKDIR /app
12
13
RUN apt-get update && \
14
- apt-get install curl jq -y && \
15
- chmod +x ./init.sh && \
16
- apt-get clean
+ apt-get upgrade -y ca-certificates && \
+ apt-get install curl jq openssl ca-certificates -y && \
+ c_rehash /etc/ssl/certs && \
17
+ update-ca-certificates --fresh --verbose && \
18
+ chmod +x ./init.sh
19
20
ENV CORECLR_ENABLE_PROFILING=1
21
ENV CORECLR_PROFILER={846F5F1C-F9AE-4B07-969E-05C26BC060D8}
0 commit comments