Skip to content

Instantly share code, notes, and snippets.

@salvadordiaz
salvadordiaz / Dockerfile
Last active November 25, 2022 11:09
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"