Compare commits
1 Commits
22bd235f20
...
bugfix/rev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
332c9e141b |
@@ -1,4 +1,8 @@
|
|||||||
FROM rust:bookworm AS builder
|
FROM archlinux:latest AS builder
|
||||||
|
|
||||||
|
RUN pacman -Syu --noconfirm && \
|
||||||
|
pacman -S --noconfirm rust cargo && \
|
||||||
|
pacman -Scc --noconfirm
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -11,12 +15,11 @@ COPY src ./src
|
|||||||
RUN touch src/main.rs
|
RUN touch src/main.rs
|
||||||
RUN cargo build --release
|
RUN cargo build --release
|
||||||
|
|
||||||
FROM debian:bookworm-slim
|
FROM archlinux:latest
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN pacman -Syu --noconfirm && \
|
||||||
libssl3 \
|
pacman -S --noconfirm openssl ca-certificates && \
|
||||||
ca-certificates \
|
pacman -Scc --noconfirm
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user