Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR /opt

# Base packages
RUN apt-get update && apt-get -y install git bundler nodejs \
zlib1g-dev libsqlite3-dev libcurl4 libcurl4-openssl-dev && \
zlib1g-dev libsqlite3-dev libcurl4 libcurl4-openssl-dev libssl-dev curl && \
rm -rf /var/lib/apt/lists/* && \
locale-gen en_US.UTF-8 && \
sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
Expand All @@ -19,6 +19,7 @@ RUN apt-get update && apt-get -y install git bundler nodejs \
update-locale LANG=en_US.UTF-8 && \
git clone git://github.com/beefproject/beef.git && \
cd beef && \
gem install eventmachine && \
bundle install

ADD config.yaml beef/config.yaml
Expand Down