From b1a8a8c26cac766eeb02eaf5dbf9403c8b6245e6 Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Mon, 23 May 2022 18:21:21 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 813ada5..88f7955 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM python:3.8-slim-buster +FROM python:3.10.4-slim-bullseye WORKDIR /app COPY requirements.txt requirements.txt +RUN apt-get update -y +RUN apt-get install cmake capnproto RUN pip3 install -r requirements.txt COPY . . VOLUME /app/config -CMD [ "python3", "main.py"] \ No newline at end of file +CMD [ "python3", "main.py"]