-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.17 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "docker-example",
"version": "1.0.0",
"description": "A task: Make 2 backend services (in the simplest way), where 1. Service (and only 1) A will be available so that it can be accessed via HTTP (REST-API) 2. Service B should not be accessible from outside 3. Service A, when processing a request from a user, must go to the API to service B, take an answer from him -> \"process\" and give an answer to the user 4. Services must be built via docker-compose 5. For these services, you need to describe the Dockerfile, but it should be 1 and not a separate Dockerfile for each 6. Dockerfile should be optimized for build speed, and produce minimal image size",
"main": "index.js",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.20"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DmitryKorolDevPro/docker-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DmitryKorolDevPro/docker-example/issues"
},
"homepage": "https://github.com/DmitryKorolDevPro/docker-example#readme"
}