about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorreverite <samantha@chalker.io>2019-06-27 10:25:33 -0700
committerreverite <samantha@chalker.io>2019-06-27 10:25:33 -0700
commit9540fb5518dcda023ffc747367b2303a5c469b07 (patch)
tree0be74a396181a4a259517ea423a3fc5d999e9853 /Dockerfile
parent3fa90982efda2109ddf90d81f5ed3449f8282642 (diff)
Use stretch
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 48de8bb00..1dde3fa3c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:buster-slim as build-dep
+FROM debian:stretch as build-dep
 
 # Use bash for the shell
 SHELL ["bash", "-c"]
@@ -63,7 +63,7 @@ RUN cd /opt/mastodon && \
 	bundle install -j$(nproc) --deployment --without development test && \
 	yarn install --pure-lockfile
 
-FROM debian:buster-slim
+FROM debian:stretch-slim
 
 # Copy over all the langs needed for runtime
 COPY --from=build-dep /opt/node /opt/node