lbry-docker/spee.ch/Dockerfile

34 lines
1.2 KiB
Text
Raw Normal View History

2018-06-01 02:08:46 +02:00
## Base Image
## Using the smallest container available
## https://hub.docker.com/_/node/
# 8.11.2-alpine, 8.11-alpine, 8-alpine, carbon-alpine (8/alpine/Dockerfile)
FROM node:8-alpine
2018-10-16 09:30:13 +02:00
LABEL MAINTAINER="leopere [at] nixc [dot] us"
2018-06-01 02:08:46 +02:00
## Install base packages and clone repo to src directory.
RUN apk update && apk --no-cache add git curl wget python build-base bash && \
npm update && npm i npm@latest -g && \
npm install -g node-gyp && \
adduser speech -h /app/ -s /bin/bash -D && \
2018-06-01 02:08:46 +02:00
chown -Rv speech /app && \
git clone https://github.com/lbryio/spee.ch.git /usr/local/src/spee.ch/ && \
cd /usr/local/src/spee.ch/ && \
npm install
2018-06-01 02:08:46 +02:00
RUN wget -quiet -O /usr/bin/debugpaste https://github.com/nixc-us/debugpaste-it/raw/master/bin/debugpaste_64 && \
chmod +x /usr/bin/debugpaste
## Install container support files
2018-10-15 09:15:35 +02:00
RUN curl -s https://raw.githubusercontent.com/leopere/docker-support/master/install | /bin/sh
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint
COPY healthcheck.sh /usr/local/bin/healthcheck
COPY debugpaste-it.sh /usr/local/bin/debugpaste-it
2018-06-01 02:08:46 +02:00
2018-06-01 22:44:39 +02:00
HEALTHCHECK CMD healthcheck
EXPOSE 3000
2018-06-01 02:08:46 +02:00
USER speech
WORKDIR /app/
ENTRYPOINT ["docker-entrypoint"]
CMD ["npm", "run", "start:dev"]