Anton
4464f15c96
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 6m54s
13 lines
247 B
Docker
13 lines
247 B
Docker
FROM gitea.antonlyap.pp.ua/antonlyap/ffmpeg-min:6.1 as ffmpeg
|
|
|
|
FROM rust:1-bookworm
|
|
COPY --from=ffmpeg /opt/ffmpeg-build/ /usr/
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -yqq libclang-dev
|
|
|
|
COPY . /opt/app
|
|
WORKDIR /opt/app
|
|
|
|
RUN cargo build --release
|