40 lines
2.1 KiB
Docker
40 lines
2.1 KiB
Docker
FROM mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm
|
|
# Copy the Sophos CA certificate into the container
|
|
COPY sophos.crt /usr/local/share/ca-certificates/sophos.crt
|
|
COPY mitutoyo.crt /usr/local/share/ca-certificates/mitutoyo.crt
|
|
# Update system CA certificates
|
|
RUN update-ca-certificates
|
|
# Install MongoDB command line tools - though mongo-database-tools not available on arm64
|
|
ARG MONGO_TOOLS_VERSION=6.0
|
|
RUN . /etc/os-release \
|
|
&& curl -sSL "https://www.mongodb.org/static/pgp/server-${MONGO_TOOLS_VERSION}.asc" | gpg --dearmor > /usr/share/keyrings/mongodb-archive-keyring.gpg \
|
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/mongodb-archive-keyring.gpg] http://repo.mongodb.org/apt/debian ${VERSION_CODENAME}/mongodb-org/${MONGO_TOOLS_VERSION} main" | tee /etc/apt/sources.list.d/mongodb-org-${MONGO_TOOLS_VERSION}.list \
|
|
&& apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get install -y mongodb-mongosh \
|
|
&& if [ "$(dpkg --print-architecture)" = "amd64" ]; then apt-get install -y mongodb-database-tools; fi \
|
|
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
|
|
|
ARG USERNAME=node
|
|
|
|
RUN SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
|
|
&& mkdir /commandhistory \
|
|
&& touch /commandhistory/.bash_history \
|
|
&& chown -R $USERNAME /commandhistory \
|
|
&& echo "$SNIPPET" >> "/home/$USERNAME/.bashrc"
|
|
|
|
# RUN rm -rf /home/node/.bash_history && touch /home/node/.bash_history && chown node:node /home/node/.bash_history
|
|
|
|
# [Optional] Uncomment this section to install additional OS packages.
|
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
|
|
|
# [Optional] Uncomment if you want to install an additional version of node using nvm
|
|
# ARG EXTRA_NODE_VERSION=10
|
|
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
|
|
|
|
# [Optional] Uncomment if you want to install more global node modules
|
|
# RUN su node -c "npm install -g <your-package-list-here>"
|
|
|
|
|
|
|