Skip to content

Commit

Permalink
Restoring the use of a package.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanpeck committed Oct 19, 2021
1 parent cad810b commit 5106139
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:14 AS build
WORKDIR /srv
RUN npm install raw-body
RUN npm install runes
ADD package.json package-lock.json ./
RUN npm install

FROM node:14-slim
WORKDIR /srv
Expand Down
84 changes: 84 additions & 0 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"raw-body": "^2.4.1",
"runes": "^0.4.3"
}
}

0 comments on commit 5106139

Please sign in to comment.