1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00

Works around [haste-server issue 97](https://github.com/seejohnrun/haste-server/issues/97) by using a new node version.

Out of the box, this image has stopped working; Debian's change.
This commit is contained in:
bibby
2016-01-21 08:36:06 -08:00
parent 59a11a14f7
commit 3b7220911c
2 changed files with 3 additions and 4 deletions

View File

@@ -1,12 +1,11 @@
FROM debian:jessie
FROM node:5.4
MAINTAINER Ric Lister, rlister@gmail.com
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
apt-get install -yq \
git \
nodejs npm
git
RUN git clone https://github.com/seejohnrun/haste-server.git /app
WORKDIR /app

View File

@@ -34,4 +34,4 @@ cat > config.js <<EOF
EOF
## run the server
exec /usr/bin/nodejs ./server.js
exec /usr/local/bin/node ./server.js