7 lines
109 B
Docker
7 lines
109 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt -y install \
|
|
git \
|
|
nodejs \
|
|
bash && \
|
|
apt clean all |