Merge pull request #498 from pathmapper/node10-slim_for_docker

Use node:10-slim for Docker
This commit is contained in:
pathmapper
2019-03-01 17:42:13 +01:00
committed by GitHub

View File

@@ -1,4 +1,9 @@
FROM node:10
FROM node:10-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
python \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 8888