1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-13 01:36:20 +00:00
Files
rlister-dockerfiles/hastebin/Dockerfile
Richard Lister 4ad7c79a92 hastebin
2014-12-13 15:23:18 -05:00

21 lines
344 B
Docker

FROM debian:jessie
MAINTAINER Ric Lister, rlister@gmail.com
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
apt-get install -yq \
git \
nodejs npm
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" ]