mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 18:02:54 +01:00
11 lines
148 B
Docker
11 lines
148 B
Docker
|
FROM node:8.11.4
|
||
|
|
||
|
WORKDIR /app/website
|
||
|
|
||
|
EXPOSE 3000 35729
|
||
|
COPY ./docs /app/docs
|
||
|
COPY ./website /app/website
|
||
|
RUN yarn install
|
||
|
|
||
|
CMD ["yarn", "start"]
|