Skip to content

Instantly share code, notes, and snippets.

@yuyalush
Created August 21, 2015 08:35
Show Gist options
  • Save yuyalush/c6c6f67b3d8ebf559d2c to your computer and use it in GitHub Desktop.
Save yuyalush/c6c6f67b3d8ebf559d2c to your computer and use it in GitHub Desktop.
H20 container
FROM ubuntu:trusty
ENV DEBIAN_FRONTEND noninteractive
# update, curl
RUN apt-get update
RUN apt-get -y install git cmake libssl-dev libyaml-dev libuv-dev build-essential
# install h2o
RUN git clone https://github.com/h2o/h2o \
&& cd h2o \
&& git submodule update --init --recursive \
&& cmake . \
&& make h2o
WORKDIR /h2o
ENTRYPOINT [ "./h2o", "-c" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment