9 lines
167 B
Docker
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/*
|