summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-20 17:07:11 +0100
committerGitHub <noreply@github.com>2021-04-20 16:07:11 +0000
commit34888827f8a06de835cbe5833a06914f28cce514 (patch)
tree8b56f20e50065cd2c222d5e8e067ec55cf1947a1 /Dockerfile
parentf6de558070c4ed4dbecf4bbbf4693e396a5577dc (diff)
Switch to Warp + SQLx, use async, switch to Rust stable (#36)
* Switch to warp + sql, use async and stable rust * Update CI to use stable
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 774468ed..0c19ef6d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,4 @@
-FROM rust as builder
-
-RUN rustup default nightly
-
+FROM rust:1.51-buster as builder
RUN cargo new --bin atuin
WORKDIR /atuin