Update Dockerfile

This commit is contained in:
TheJoKlLa 2022-05-23 18:29:14 +00:00
parent 5e7a50bd30
commit 506f6706a6

View File

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