Skip to content

Instantly share code, notes, and snippets.

@salvadordiaz
Last active November 25, 2022 11:09
Show Gist options
  • Save salvadordiaz/7547f35b57bab6da66a12412ae70888e to your computer and use it in GitHub Desktop.
Save salvadordiaz/7547f35b57bab6da66a12412ae70888e to your computer and use it in GitHub Desktop.
Official node slim image with git and openssh installed
FROM node:18-slim
RUN bash -c "apt update -y && apt install git openssh -y && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment