We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd2526 commit c21d620Copy full SHA for c21d620
Dockerfile
@@ -8,12 +8,11 @@ LABEL "com.github.actions.description"="Update a pinned gist to contain your lat
8
LABEL "com.github.actions.icon"="book-open"
9
LABEL "com.github.actions.color"="green"
10
11
-# Copy the package.json and package-lock.json
12
-# COPY yarn.lock ./
13
-# COPY package.json ./
+# Copy the package.json
+COPY package.json ./
14
15
# Install dependencies
16
-RUN yarn install --frozen-lockfile
+RUN npm install --production
17
18
# Copy the rest of your action's code
19
COPY . .
0 commit comments