bliss-js/Dockerfile
Anton 4464f15c96
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 6m54s
Fix install
2024-05-24 21:06:56 +03:00

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