1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00
Files
rlister-dockerfiles/hastebin/Dockerfile
2016-07-05 20:46:52 +02:00

20 lines
320 B
Docker

FROM node:6
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" ]