Cleanup Dockerfile, thanks to @kpcyrd

This commit is contained in:
Thomas Gläßle
2017-04-09 11:36:33 +02:00
parent c182a407cf
commit 2985c6a051
2 changed files with 11 additions and 26 deletions

View File

@@ -1,28 +1,13 @@
FROM node:6
ARG VERSION=0.3.0
# Download stable version
# RUN wget https://github.com/xwiki-labs/cryptpad/archive /${VERSION}.tar.gz -O /cryptpad.tar.gz \
# && mkdir -p /cryptpad \
# && tar -xzf /cryptpad.tar.gz -C /cryptpad --strip-components=1 \
# && rm /cryptpad.tar.gz
# Download from github
# RUN git clone https://github.com/xwiki-labs/cryptpad.git
# Add code directly
ADD . /cryptpad
FROM node:6-alpine
COPY . /cryptpad
WORKDIR /cryptpad
RUN npm install \
RUN apk add --no-cache git tini \
&& npm install \
&& npm install -g bower \
&& bower install --allow-root
ADD container-start.sh /container-start.sh
RUN chmod u+x /container-start.sh
EXPOSE 3000
VOLUME /cryptpad/datastore
@@ -32,4 +17,4 @@ ENV USE_SSL=false
ENV STORAGE='./storage/file'
ENV LOG_TO_STDOUT=true
CMD /container-start.sh
CMD ["/sbin/tini", "--", "/cryptpad/container-start.sh"]