Skip to content

Instantly share code, notes, and snippets.

@Rolilink
Created February 2, 2015 18:47
Show Gist options
  • Save Rolilink/5a602b4c2a04788b0435 to your computer and use it in GitHub Desktop.
Save Rolilink/5a602b4c2a04788b0435 to your computer and use it in GitHub Desktop.
app container
# LoopBack App Base Image
FROM 4dstudios/loopback_app_base
# Create App Directory and CD into it
RUN mkdir /data/app
WORKDIR /data/app
# Clone Master and Install dependencies
RUN git clone https://github.com/Rolilink/remote-job-board.git
# Run App
WORKDIR /data/app/remote-job-board
RUN npm install
EXPOSE 3000
CMD slc run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment