This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM node:18-bullseye
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
python3 \
|
||||
python3-pip \
|
||||
git \
|
||||
openssh-client \
|
||||
docker.io && \
|
||||
pip3 install ansible && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN node --version && \
|
||||
npm --version && \
|
||||
ansible --version && \
|
||||
docker --version
|
||||
Reference in New Issue
Block a user