From d0b6577f43cd6343f0d3cf289d637ee5cbcfff27 Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Mon, 23 May 2022 19:00:16 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b753b76..fc442c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:3.10.4-slim-bullseye +FROM python:3.10.4-bullseye WORKDIR /app COPY requirements.txt requirements.txt RUN apt-get update -y -RUN apt-get install -y cmake capnproto clang gcc +RUN apt-get install -y cmake capnproto clang gcc build-essential RUN pip3 install -r requirements.txt COPY . . VOLUME /app/config