about summary refs log tree commit diff
path: root/services/tazblog/Dockerfile
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-06-29T13·01+0100
committerVincent Ambo <tazjin@google.com>2019-06-29T13·01+0100
commit47f2145b5b39b63500fe2d9d0a64edc44edaa793 (patch)
treef79bdce9a8683851e648576b47147463d04193c2 /services/tazblog/Dockerfile
parent85dbb4cc238c1e4b1b49806c0728c891a9a0acf7 (diff)
chore(tazblog): Remove files from ye olde times
Diffstat (limited to 'services/tazblog/Dockerfile')
-rw-r--r--services/tazblog/Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/services/tazblog/Dockerfile b/services/tazblog/Dockerfile
deleted file mode 100644
index 7d8b60582655..000000000000
--- a/services/tazblog/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-FROM fpco/stack-build
-MAINTAINER Vincent Ambo <dev@tazj.in>
-
-# Cache dependencies
-ADD stack.yaml tazblog.cabal /opt/tazblog/
-WORKDIR /opt/tazblog
-RUN stack build --only-dependencies
-
-# Base setup
-VOLUME /var/tazblog
-EXPOSE 8000 8070
-ENV PATH /root/.local/bin:$PATH
-
-# Build blog
-ADD . /opt/tazblog
-RUN stack install && cp /root/.local/bin/tazblog* /usr/bin/
-
-# Done!
-CMD tazblog