mirror of
https://github.com/FlipsideCrypto/og-image.git
synced 2026-02-06 10:46:43 +00:00
6 lines
99 B
Docker
6 lines
99 B
Docker
FROM node:10
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm run build
|
|
CMD [ "npm", "start" ] |