Created
August 21, 2015 08:35
-
-
Save yuyalush/c6c6f67b3d8ebf559d2c to your computer and use it in GitHub Desktop.
H20 container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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