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 263e01f commit 0111f18Copy full SHA for 0111f18
Dockerfile
@@ -1,14 +1,16 @@
1
FROM node:14-slim
2
3
+WORKDIR /app
4
+
5
# Install dependencies, but don't generate lock files as we want to always fetch
6
# the lastest @mdn/browser-compat-data package.
7
COPY package.json ./
8
RUN npm install --no-package-lock && \
- npm cache clear --force
9
+ npm cache clear --force
10
-# Copy the script
11
+# copy sources
12
COPY update_remote_settings_records.mjs ./
13
+COPY ./version.json ./
14
-# And run it
15
+# set CMD
16
CMD ["npm", "run", "ingest"]
-
version.json
@@ -0,0 +1 @@
+{}
0 commit comments