Skip to content

Instantly share code, notes, and snippets.

@randallagordon
Created March 20, 2015 06:13
Show Gist options
  • Save randallagordon/dd4f622619606fcbfa12 to your computer and use it in GitHub Desktop.
Save randallagordon/dd4f622619606fcbfa12 to your computer and use it in GitHub Desktop.
Basic Dockerfile for io.js on ARM
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