docmachine-containers/Dockerfile

11 lines
175 B
Text
Raw Normal View History

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