mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
12 lines
159 B
Docker
12 lines
159 B
Docker
FROM node:13-stretch
|
|
|
|
COPY package* /app/
|
|
RUN cd /app; npm install
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm run generate:schemas
|
|
RUN npm run build
|
|
|
|
CMD npm run start
|