Skip to content

Commit

Permalink
Use debian base image directly
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysparry committed Nov 11, 2024
1 parent 29a62c7 commit f32c335
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docker/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0
FROM debian:11-slim
ENV ASPNETCORE_URLS=http://+:80 DOTNET_RUNNING_IN_CONTAINER=true
RUN /bin/sh -c apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \
libstdc++6 \
zlib1g && \
rm -rf /var/lib/apt/lists/*

ARG BUILD_NUMBER
ARG BUILD_DATE
Expand Down

0 comments on commit f32c335

Please sign in to comment.