ff541be7a0
* WIP #990 initial commit of dockerfiles * WIP #990 Everything but CMD working * Added deepforge config, added torch install * Updated the comment describing the image * WIP Added cuda worker docker image * WIP #990 Added wget and blob configuration * WIP #990 Fixed worker connection dockerfile * WIP #990 Fixed docker image issues * WIP #990 Reuse the node_modules directory * WIP #990 Reuse node modules in docker image * WIP #990 Added entrypoint and cmd files * WIP #990 Updated the standalone image * WIP #990 Removed standalone docker file This should be replaced with something like docker compose instead * WIP #990 Added deployment instructions * WIP #990 Added additional comments about volumes, gpu
66 linhas
2.5 KiB
Docker
66 linhas
2.5 KiB
Docker
# This has torch and cuda support
|
|
FROM kaixhin/cuda-torch
|
|
MAINTAINER Brian Broll <brian.broll@gmail.com>
|
|
|
|
# install nodejs v6
|
|
RUN groupadd --gid 1000 node \
|
|
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
|
|
|
|
# gpg keys listed at https://github.com/nodejs/node#release-team
|
|
RUN set -ex \
|
|
&& for key in \
|
|
9554F04D7259F04124DE6B476D5A82AC7E37093B \
|
|
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
|
|
FD3A5288F042B6850C66B31F09FE44734EB7990E \
|
|
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
|
|
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
|
|
B9AE9905FFD7803F25714661B63B535A4C206CA9 \
|
|
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
|
|
56730D5401028683275BD23C23EFEFE93C4CFFFE \
|
|
; do \
|
|
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
|
|
done
|
|
|
|
ENV NPM_CONFIG_LOGLEVEL info
|
|
ENV NODE_VERSION 6.10.1
|
|
|
|
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
|
|
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
|
|
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
|
|
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
|
|
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
|
|
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
|
|
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs
|
|
|
|
# install deepforge
|
|
RUN echo '{"allow_root": true}' > /root/.bowerrc && mkdir -p /root/.config/configstore/ && \
|
|
echo '{}' > /root/.config/configstore/bower-github.json
|
|
|
|
RUN mkdir /deepforge
|
|
ADD . /deepforge
|
|
WORKDIR /deepforge
|
|
|
|
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 ln -s /deepforge/bin/deepforge /usr/local/bin
|
|
|
|
# configure the worker
|
|
RUN deepforge config blob.dir /data/blob && \
|
|
deepforge config mongo.dir /data/db && \
|
|
deepforge config worker.cache.useBlob false && \
|
|
deepforge config worker.cache.dir /deepforge/worker-cache && \
|
|
deepforge config torch.dir /root/torch/ && \
|
|
git config --global user.email "deepforge-worker@deepforge.org" && \
|
|
git config --global user.name "deepforge-worker"
|
|
|
|
# Update torch
|
|
RUN apt-get update && apt-get install sudo wget && \
|
|
. /root/torch/install/bin/torch-activate && \
|
|
cd /root/torch/ && bash /root/torch/update.sh && \
|
|
deepforge update -t
|
|
|
|
ENTRYPOINT ["deepforge", "start", "--worker"]
|
|
CMD ["http://172.17.0.1:8888"]
|