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

Merge pull request #4 from bibby/master

const in strict mode fix
This commit is contained in:
Ric Lister
2016-01-22 10:58:22 -05:00
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