Skip to content
Snippets Groups Projects
Commit 79401e7c authored by Dookarun, Jason J (PG/T - Comp Sci & Elec Eng)'s avatar Dookarun, Jason J (PG/T - Comp Sci & Elec Eng)
Browse files

dockerized completed :white_check_mark:

parent 93b6e9de
No related branches found
No related tags found
No related merge requests found
FROM node:16
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]
Source diff could not be displayed: it is too large. Options to address this: view the blob.
{
"name": "express",
"name": "location_microservice",
"version": "1.0.0",
"description": "",
"description": "Location Microservice",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"repository": "git@gitlab.surrey.ac.uk:group-5/location_microservice.git",
"author": "Jason J Dookarun",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.0.4"
"mongoose": "^5.3.16",
"morgan": "^1.9.1",
"nodemon": "^1.18.4"
},
"scripts": {
"start": "node src/App.js"
}
}
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment