1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-10 12:47:45 +03:00
mal/cpp/Dockerfile
Stephen Thirlwall 778f6278b7 Use g++-4.9 instead of clang-3.5 on Linux
Using the linker fix from @kanaka
2015-03-28 12:17:25 +11:00

12 lines
239 B
Docker

FROM ubuntu:utopic
MAINTAINER Stephen Thirlwall <sdt@dr.com>
RUN apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
g++-4.9 \
libreadline-dev \
make \
&& /bin/true
WORKDIR /mal