-
Notifications
You must be signed in to change notification settings - Fork 2
Description
I am trying to use your DOCKERFILE to create a template in coder. I am running into a few issues maybe you can help me identify. First the GPG keys are not installed for bookworm-backports. Second their is a package requirement libicu(72,76,77,78) missing. I have verified that libicu74 is installed and libicu-dev but that has not helped. Below is where I am at right now. Do you see anything I may be missing?
FROM codercom/code-server
USER root
RUN curl -O https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
&& dpkg -i packages-microsoft-prod.deb
&& rm packages-microsoft-prod.deb
&& echo deb http://deb.debian.org/debian bookworm-backports main | tee /etc/apt/sources.list.d/bookworm-backports.list
&& apt-get update
&& apt-get install -y apt-transport-https libgdiplus libc6-dev
&& apt-get update
&& apt-get install -y dotnet-sdk-10.0
&& apt-get install -y -t bookworm-backports git
&& apt-get clean
&& rm -rf /var/lib/apt/lists/*