mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-10 20:53:02 -05:00
initial commit
This commit is contained in:
19
node_modules/nodemon/Dockerfile
generated
vendored
Normal file
19
node_modules/nodemon/Dockerfile
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM ubuntu:12.04
|
||||
MAINTAINER Remy Sharp <remy@leftlogic.com>
|
||||
|
||||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
|
||||
RUN apt-get update && apt-get install curl npm -y
|
||||
|
||||
ENV NVM_DIR /usr/local/nvm
|
||||
ENV NODE_VERSION 4
|
||||
ENV NVM_VERSION 0.26.1
|
||||
ENV TRAVIS TRUE
|
||||
|
||||
# # Install nvm with node and npm
|
||||
RUN curl https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh | bash \
|
||||
&& source $NVM_DIR/nvm.sh \
|
||||
&& nvm install 0.10 \
|
||||
&& nvm install 0.12 \
|
||||
&& nvm install 4 \
|
||||
&& nvm alias default $NODE_VERSION \
|
||||
&& nvm use default
|
||||
Reference in New Issue
Block a user