File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
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
86amalgamation
97.nyc_output
108coverage
119tmp
12- package-lock.json
1310* .md
1411* .db
12+ * .db *
1513* .db-journal
1614* .geojson
15+ * .geojsonl
1716* .gz
17+ * .zip
1818.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