Skip to content

Instantly share code, notes, and snippets.

@ekristen
Last active August 29, 2016 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekristen/648bd877810052ed5b5efe5cac992d62 to your computer and use it in GitHub Desktop.
Save ekristen/648bd877810052ed5b5efe5cac992d62 to your computer and use it in GitHub Desktop.
Example of Order Rules
FROM ubuntu
WORKDIR /opt
EXPOSE 3000
VOLUME ["/data"]
ENTRYPOINT ["node"]
CMD ["server.js"]
ADD package.json /opt/package.json
RUN npm install --production
COPY . /opt
ARG BUILD_REVISION=master
ENV REVISION=${BUILD_REVISION}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment