This image contains ubuntu 20.04, node js, python 3, jq, zip, curl and openapi2 apigee converter.
133
This image contains ubuntu 20.04, node js, python 3, jq, zip, curl and openapi2 apigee converter.
run below command to use in interactive mode
docker run -it ymca5ankit/node_python_jq_zip_curl_openapi2apigee:u20.04_n14.17.1_py3.8.5
use below command to check version
node -v
python3 --version
npm -v
Below is docker file
FROM ubuntu:20.04
MAINTAINER Ankit
ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN true
RUN apt-get update
RUN apt-get -yq install python3-pip python3-dev
RUN apt-get -yq install jq
RUN apt-get -yq install zip
RUN apt-get -yq install curl
#This command install node js from PPA. If we directly use apt-get install nodejs then default nodejs from ubuntu will be installed.
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get install -yq nodejs
#this command installs openapi2apigee convertor.
RUN npm install -g openapi2apigee
Content type
Image
Digest
Size
187 MB
Last updated
over 5 years ago
docker pull ymca5ankit/node_python_jq_zip_curl_openapi2apigee:u20.04_n14.17.1_py3.8.5