docmachine-containers/Dockerfile

11 lines
198 B
Docker
Raw Normal View History

2020-04-19 10:28:05 +00:00
FROM node:buster-slim
2018-04-20 15:27:59 +00:00
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
RUN apt-get update && \
apt-get install -y make python build-essential
2020-04-19 10:28:05 +00:00
COPY . /app
WORKDIR /app
RUN make prepare
CMD make watch