mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-03-12 02:07:41 +01:00
15 lines
178 B
Text
15 lines
178 B
Text
|
FROM node:8
|
||
|
|
||
|
# Create app directory
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
# Install app dependencies
|
||
|
COPY package*.json ./
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
# Bundle app source
|
||
|
COPY . .
|
||
|
|
||
|
CMD [ "npm", "start" ]
|