Browse Source

Update Dockerfile

techial 3 years ago
parent
commit
5ae641fda0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -10,8 +10,8 @@ COPY . .
 # run release build
 RUN cargo build --release
 
-# create final container using slim version of debian
-FROM debian:buster-slim
+# create final container using rust
+FROM rust:latest
 
 # microbin will be in /usr/local/bin/microbin/
 WORKDIR /usr/local/bin