Skip to content

Instantly share code, notes, and snippets.

#Base image dockerfile
FROM ubuntu:17.04
LABEL Description="This image is for creating Ubuntu base with JRE & JMeter"
# Installig Pre-requisite Packages like wget, apt-utils & JRE
RUN apt-get clean && \
apt-get update && \
apt-get -qy install \
apt-utils \
wget \