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
commit 2def3820dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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