docmachine/Dockerfile

11 lines
198 B
Docker

FROM node:buster-slim
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
RUN apt-get update && \
apt-get install -y make python build-essential
COPY . /app
WORKDIR /app
RUN make prepare
CMD make watch