Skip to content

Commit

Permalink
Use Debian as base image in Dockerfile
Browse files Browse the repository at this point in the history
Also upgrade to Rust 1.64 in the Dockerfile.
  • Loading branch information
protochron committed Oct 25, 2022
1 parent 31c0f29 commit 6c047eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM rust:1.61 as builder
FROM rust:1.64 as builder

WORKDIR /app
COPY . /app
RUN cargo build --release --all-features --bin bindle-server

FROM rust:1.61-slim-buster
FROM debian:bullseye-slim

ARG USERNAME=bindle
ARG USER_UID=1000
Expand Down

0 comments on commit 6c047eb

Please sign in to comment.