mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
778f6278b7
Using the linker fix from @kanaka
12 lines
239 B
Docker
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
|