fabfire_adapter/Dockerfile

10 lines
260 B
Docker
Raw Normal View History

2022-05-23 19:00:16 +00:00
FROM python:3.10.4-bullseye
2022-03-16 05:59:18 +01:00
WORKDIR /app
COPY requirements.txt requirements.txt
2022-05-23 18:21:21 +00:00
RUN apt-get update -y
2022-05-23 19:00:16 +00:00
RUN apt-get install -y cmake capnproto clang gcc build-essential
2022-03-16 05:59:18 +01:00
RUN pip3 install -r requirements.txt
COPY . .
VOLUME /app/config
2022-05-23 18:21:21 +00:00
CMD [ "python3", "main.py"]