From 322ee852a868cb4aa80aae4b2a3bc5e5ab9d177f Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Thu, 24 Oct 2019 18:13:52 -0700 Subject: [PATCH] chore: switch to debian buster matching the rust builder using buster. fixes an openssl mismatch between the two (`OPENSSL_1_1_1' not found) also bump to latest rust Closes #124 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 519d814f0..c1ef1b01d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.37.0 as builder +FROM rust:1.38.0 as builder ADD . /app WORKDIR /app @@ -11,8 +11,8 @@ RUN \ cargo install --path autopush --root /app -FROM debian:stretch-slim -# FROM debian:stretch # for debugging docker build +FROM debian:buster-slim +# FROM debian:buster # for debugging docker build MAINTAINER RUN \ groupadd --gid 10001 app && \