Files
busynix/.devcontainer/Dockerfile
T
2024-01-29 10:43:21 +01:00

9 lines
167 B
Docker

FROM node:20
RUN apt-get update && apt-get install -y ssh-client
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*