Created
May 9, 2015 03:07
-
-
Save adamenger/9e7019a491165072836e to your computer and use it in GitHub Desktop.
Angry Caching Proxy Dockerfile
This file contains hidden or 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 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