From 99e05e4e5e103d80a68d8f1976e53fdf46f2b508 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 30 Dec 2023 18:36:43 -0500 Subject: [PATCH] Add patches folder to runtime Dockerfile --- orchestration/runtime/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index 91ef2c8c..fd8ecf07 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -3,7 +3,7 @@ FROM rust:1.75.0-slim-bookworm as builder # Move to a Debian package snapshot RUN rm -rf /etc/apt/sources.list.d/debian.sources && \ rm -rf /var/lib/apt/lists/* && \ - echo "deb [arch=amd64] http://snapshot.debian.org/archive/debian/20230703T000000Z bookworm main" > /etc/apt/sources.list && \ + echo "deb [arch=amd64] http://snapshot.debian.org/archive/debian/20231201T000000Z bookworm main" > /etc/apt/sources.list && \ apt update # Install dependencies @@ -22,6 +22,7 @@ ADD coordinator /serai/coordinator ADD substrate /serai/substrate ADD mini /serai/mini ADD tests /serai/tests +ADD patches /serai/patches ADD Cargo.toml /serai ADD Cargo.lock /serai ADD AGPL-3.0 /serai