Skip to content

Instantly share code, notes, and snippets.

@mjbryant
Last active January 23, 2017 17:15
Show Gist options
  • Save mjbryant/3bbb7b41eac91d450b2771b2d896c1e0 to your computer and use it in GitHub Desktop.
Save mjbryant/3bbb7b41eac91d450b2771b2d896c1e0 to your computer and use it in GitHub Desktop.
luarocks docker image
FROM ubuntu:xenial
MAINTAINER mbryant <mbryantj@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
bash \
unzip \
make \
build-essential \
dnsutils \
libyaml-dev \
libpcre3-dev \
libssl-dev \
vim \
luarocks && \
apt-get clean
RUN luarocks install lyaml 6.1.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment