Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #187 from computeronix/patch-8
Browse files Browse the repository at this point in the history
Patch 8
  • Loading branch information
aleitner committed Jul 14, 2017
2 parents d5d93f4 + b02858f commit 4edf529
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions dockerfiles/storjshare-daemon-alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
FROM node:boron-alpine
MAINTAINER Marcel O'Neil <marcel@marceloneil.com>
MAINTAINER Storj Labs (storj.io)

RUN apk add --no-cache bash g++ git make python vim && \
RUN apk add --no-cache bash g++ git make openssl-dev python vim && \
node --version && \
npm --version && \
python --version && \
npm install --global storjshare-daemon && \
npm cache clean && \
apk del git openssl-dev python vim && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/npm* && \
storjshare --version

CMD []
ENTRYPOINT ["/bin/bash"]
EXPOSE 4000
EXPOSE 4001
EXPOSE 4002
EXPOSE 4003
2 changes: 1 addition & 1 deletion dockerfiles/storjshare-daemon-ubuntu.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:latest
MAINTAINER Storj Labs (bill@storj.io)
MAINTAINER Storj Labs (www.storj.io)

RUN apt-get update && \
apt-get -y install apt-utils curl && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/storjshare-daemon-win.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM microsoft/windowsservercore
MAINTAINER Storj Labs (bill@storj.io)
MAINTAINER Storj Labs (www.storj.io)
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]

ENV NPM_CONFIG_LOGLEVEL info
Expand Down

0 comments on commit 4edf529

Please sign in to comment.