Update Dockerfile

This commit is contained in:
TheJoKlLa 2022-05-23 19:15:37 +00:00
parent d0b6577f43
commit 759e728efb

View File

@ -2,6 +2,7 @@ FROM python:3.10.4-bullseye
WORKDIR /app
COPY requirements.txt requirements.txt
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y cmake capnproto clang gcc build-essential
RUN pip3 install -r requirements.txt
COPY . .