docmachine-containers/docker/Dockerfile

27 lines
638 B
Docker
Raw Normal View History

2021-10-10 09:21:36 +00:00
FROM node:bullseye-slim
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
2021-11-23 22:46:50 +00:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends python3 python3-pip pipenv \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& truncate -s 0 /var/log/*log
2021-10-10 09:21:36 +00:00
2021-11-23 22:46:50 +00:00
RUN apt-get update \
2021-11-30 13:02:48 +00:00
&& apt-get install -y --no-install-recommends make build-essential inotify-tools chromium gosu \
2021-11-23 22:46:50 +00:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& truncate -s 0 /var/log/*log
2021-10-10 09:21:36 +00:00
COPY . /app
WORKDIR /app
ENV LANG=C
ENV LC_ALL=C
2021-12-06 13:59:18 +00:00
RUN make prepare SYSTEM_INSTALL=1
2021-11-30 13:02:48 +00:00
2021-10-10 09:21:36 +00:00
ENTRYPOINT ["/app/docker/entrypoint.sh"]
CMD ["watch"]