Set nolock for nfs mount for mysql and templating a testing framework
This commit is contained in:
28
test/Dockerfile-ubuntu-xenial
Normal file
28
test/Dockerfile-ubuntu-xenial
Normal file
@@ -0,0 +1,28 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
MAINTAINER Jacob Cody Wimer <jacob.wimer@gmail.com>
|
||||
|
||||
RUN apt-get update -qq \
|
||||
&& DEBIAN_FRONTEND=noninteractive \
|
||||
apt-get install -y -q \
|
||||
build-essential \
|
||||
python python-dev python-pip \
|
||||
libffi-dev libssl-dev \
|
||||
libxml2-dev libxslt1-dev zlib1g-dev \
|
||||
git \
|
||||
openssl \
|
||||
openssh-server \
|
||||
ca-certificates \
|
||||
apt-transport-https \
|
||||
sudo \
|
||||
&& pip install --upgrade setuptools pip wheel \
|
||||
&& pip install --upgrade pyyaml jinja2 pycrypto \
|
||||
&& pip install --upgrade pywinrm \
|
||||
&& apt-get -qq clean \
|
||||
&& rm -rf \
|
||||
/var/lib/apt/lists/* \
|
||||
/tmp/* \
|
||||
/var/tmp/*
|
||||
|
||||
RUN mkdir /ansible
|
||||
VOLUME /ansible
|
||||
Reference in New Issue
Block a user