Skip to content

Commit

Permalink
chore: switch to debian buster
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pjenvey committed Oct 25, 2019
1 parent cf86629 commit 322ee85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.37.0 as builder
FROM rust:1.38.0 as builder

ADD . /app
WORKDIR /app
Expand All @@ -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 <[email protected]>
RUN \
groupadd --gid 10001 app && \
Expand Down

0 comments on commit 322ee85

Please sign in to comment.