mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 02:16:30 +00:00
Fix docker images in Dockerfile (#124)
This commit is contained in:
parent
02a9a4a35d
commit
5c82d0f05e
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
FROM rust:latest as build
|
FROM rust:bullseye as build
|
||||||
|
|
||||||
COPY . /src
|
COPY . /src
|
||||||
RUN cargo install --path /src
|
RUN cargo install --path /src
|
||||||
|
|
||||||
FROM debian:buster
|
FROM debian:bullseye
|
||||||
|
|
||||||
LABEL org.opencontainers.image.source https://github.com/deps-rs/deps.rs
|
LABEL org.opencontainers.image.source https://github.com/deps-rs/deps.rs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue