mirror of
https://github.com/rlister/dockerfiles.git
synced 2025-12-12 17:26:15 +00:00
20 lines
322 B
Docker
20 lines
322 B
Docker
FROM node:5.4
|
|
|
|
MAINTAINER Ric Lister, rlister@gmail.com
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive \
|
|
apt-get update && \
|
|
apt-get install -yq \
|
|
git
|
|
|
|
RUN git clone https://github.com/seejohnrun/haste-server.git /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
|
|
ADD ./app.sh /app/
|
|
RUN chmod 755 app.sh
|
|
|
|
EXPOSE 7777
|
|
|
|
CMD [ "./app.sh" ]
|