ARG RELEASE |
ARG LAUNCHPAD_BUILD_ARCH |
LABEL org.opencontainers.image.ref.name=ubuntu |
LABEL org.opencontainers.image.version=24.04 |
ADD file:bcebbf0fddcba5b864d5d267b68dd23bcfb01275e6ec7bcab69bf8b56af14804 in / |
CMD ["/bin/bash"] |
ARG DEBIAN_FRONTEND=noninteractive |
ENV PATH=/dotnet:/dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
ENV DOTNET_ROOT=/dotnet |
ENV NVIDIA_DRIVER_CAPABILITIES=compute,video,utility NVIDIA_VISIBLE_DEVICES=all DOTNET_CLI_TELEMETRY_OPTOUT=true |
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y software-properties-common && add-apt-repository universe && apt-get update && apt-get install -y tzdata wget ca-certificates gnupg curl tar xz-utils libssl-dev apt-transport-https openssl locales libfontconfig1 libfreetype6 pciutils vainfo git # buildkit |
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c wget https://dot.net/v1/dotnet-install.sh && bash dotnet-install.sh -c 8.0 --install-dir /dotnet && rm -f dotnet-install.sh && chmod 775 /dotnet # buildkit |
COPY /deploy /app # buildkit |
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c chmod +x /app/docker-entrypoint.sh # buildkit |
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c /dotnet/dotnet dev-certs https # buildkit |
EXPOSE map[5000/tcp:{}] |
WORKDIR /app |
ENTRYPOINT ["/app/docker-entrypoint.sh"] |
COPY FileFlows.Server.dll /app/Server/FileFlows.Server.dll # buildkit |