about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
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