We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d9d7eb commit f8e457cCopy full SHA for f8e457c
2 files changed
.dockerignore
@@ -1,7 +1,5 @@
1
.git
2
.gitignore
3
-.circleci
4
-.travis.yml
5
Dockerfile
6
.dockerignore
7
node_modules
@@ -12,7 +10,10 @@ tmp
12
10
package-lock.json
13
11
*.md
14
*.db
+*.db*
15
*.db-journal
16
*.geojson
+*.geojsonl
17
*.gz
18
+*.zip
19
.tap
Dockerfile
@@ -3,6 +3,7 @@ FROM pelias/baseimage
# install commands used by bin/download script
RUN apt-get update && \
apt-get install -y jq lbzip2 pigz zstd && \
+ apt-get clean && \
rm -rf /var/lib/apt/lists/*
8
9
# working directory
@@ -15,7 +16,8 @@ COPY . /code
RUN npm install && \
npm run env_check && \
npm test && \
- npm prune --production
+ npm prune --production && \
20
+ rm -rf ~/.npm /tmp/*
21
22
# entrypoint
23
ENTRYPOINT ["node", "bin/spatial.js"]
0 commit comments