Created
March 20, 2015 06:13
-
-
Save randallagordon/dd4f622619606fcbfa12 to your computer and use it in GitHub Desktop.
Basic Dockerfile for io.js on ARM
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
FROM partlab/ubuntu-arm-iojs | |
COPY . /src | |
RUN cd /src; npm i | |
ENV PORT 8080 | |
EXPOSE 8080 | |
WORKDIR /src | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment