Created
February 2, 2015 18:47
-
-
Save Rolilink/5a602b4c2a04788b0435 to your computer and use it in GitHub Desktop.
app container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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