diff options
author | Ondřej Žára <ondras@zarovi.cz> | 2017-03-29 21:25:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 21:25:55 +0200 |
commit | 027bcc571aa40185f3e9215455d37a0915f1a626 (patch) | |
tree | a8f23657a38e963588f598f16c8987345fb56c94 | |
parent | 378bb0cf2f773b1f9331d5a44d584f347876e368 (diff) | |
parent | d251e630b194582080feb881f7479ebbe3bf2139 (diff) | |
download | wwwsqldesigner-027bcc571aa40185f3e9215455d37a0915f1a626.zip wwwsqldesigner-027bcc571aa40185f3e9215455d37a0915f1a626.tar.gz wwwsqldesigner-027bcc571aa40185f3e9215455d37a0915f1a626.tar.bz2 |
Merge pull request #245 from pywebdesign/master
Simple Docker image of WWW SQL Designer
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9fb2919 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM tutum/apache-php +RUN apt-get update && apt-get install -yq git && rm -rf /var/lib/apt/lists/* +RUN rm -fr /app +ADD . /app |