12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
|
{
|
||
|
"schemaVersion": 2,
|
||
|
"dockerfileLines": [
|
||
|
"FROM node",
|
||
|
"WORKDIR /app",
|
||
|
"COPY package*.json ./",
|
||
|
"RUN npm install --production",
|
||
|
"COPY . .",
|
||
|
"CMD [\"node\", \"index.js\"]"
|
||
|
]
|
||
|
}
|