Update .devcontainer/Dockerfile

This commit is contained in:
2025-01-30 17:30:42 +01:00
parent 2ed058df64
commit bc8f30e924

View File

@@ -2,6 +2,10 @@ FROM mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm
# Copy the Sophos CA certificate into the container # Copy the Sophos CA certificate into the container
COPY sophos.crt /usr/local/share/ca-certificates/sophos.crt COPY sophos.crt /usr/local/share/ca-certificates/sophos.crt
COPY mitutoyo.crt /usr/local/share/ca-certificates/mitutoyo.crt COPY mitutoyo.crt /usr/local/share/ca-certificates/mitutoyo.crt
# Merge multiple CA certificates into one file
RUN cat /usr/local/share/ca-certificates/sophos.crt \
/usr/local/share/ca-certificates/mitutoyo.crt \
> /usr/local/share/ca-certificates/custom-ca.pem
# Update system CA certificates # Update system CA certificates
RUN update-ca-certificates RUN update-ca-certificates
# Install MongoDB command line tools - though mongo-database-tools not available on arm64 # Install MongoDB command line tools - though mongo-database-tools not available on arm64