Files
ebusd/contrib/docker/buildenv/Dockerfile
T

12 lines
227 B
Docker

FROM debian:jessie
RUN apt-get update && apt-get install -y \
autoconf automake g++ make git \
libmosquitto-dev \
&& rm -rf /var/lib/apt/lists/*
LABEL maintainer "ebusd@ebusd.eu"
WORKDIR /build
CMD ["/bin/bash"]