fix: add ssh-client to devcontainer

This commit is contained in:
Jonas Juselius
2024-01-29 10:43:21 +01:00
parent ec992940d5
commit e94c628024

View File

@@ -1 +1,8 @@
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/*