BuckyServer icon indicating copy to clipboard operation
BuckyServer copied to clipboard

Dockerise Bucky Server

Open vinhlh opened this issue 9 years ago • 0 comments

Example

FROM node

# a hack to fix: EXDEV: cross-device link not permitted, rename
RUN cd $(npm root -g)/npm \
&& npm install fs-extra \
&& sed -i -e s/graceful-fs/fs-extra/ -e s/fs.rename/fs.move/ ./lib/utils/rename.js

RUN mkdir -p /opt/app
ADD . /opt/app
WORKDIR /opt/app

RUN npm install

CMD ["node", "start.js"]

EXPOSE 5999

vinhlh avatar Jun 21 '16 05:06 vinhlh