Skip to content

Instantly share code, notes, and snippets.

@adamenger
Created May 9, 2015 03:07
Show Gist options
  • Select an option

  • Save adamenger/9e7019a491165072836e to your computer and use it in GitHub Desktop.

Select an option

Save adamenger/9e7019a491165072836e to your computer and use it in GitHub Desktop.
Angry Caching Proxy Dockerfile
FROM ubuntu:14.04
RUN apt-get update \
&& apt-get install curl -y -q \
&& curl -sL https://deb.nodesource.com/setup | sudo bash - \
&& apt-get install nodejs -y
RUN npm install -g angry-caching-proxy
RUN mkdir cache
CMD angry-caching-proxy --directory cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment