File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11.git
22.gitignore
3- .circleci
4- .travis.yml
53Dockerfile
64.dockerignore
75node_modules
1210package-lock.json
1311* .md
1412* .db
13+ * .db *
1514* .db-journal
1615* .geojson
16+ * .geojsonl
1717* .gz
18+ * .zip
1819.tap
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM pelias/baseimage
33# install commands used by bin/download script
44RUN apt-get update && \
55 apt-get install -y jq lbzip2 pigz zstd && \
6+ apt-get clean && \
67 rm -rf /var/lib/apt/lists/*
78
89# working directory
@@ -15,7 +16,8 @@ COPY . /code
1516RUN npm install && \
1617 npm run env_check && \
1718 npm test && \
18- npm prune --production
19+ npm prune --production && \
20+ rm -rf ~/.npm /tmp/*
1921
2022# entrypoint
2123ENTRYPOINT ["node" , "bin/spatial.js" ]
You can’t perform that action at this time.
0 commit comments