Files
pepperplus-ri/Dockerfile
Kasper ec0e8e3504 build: add Docker container
Some changes (like `asound.conf`) are not portable and only work on my
machine. This will be fixed in the future.

ref: N25B-284
2025-11-14 14:15:00 +01:00

13 lines
183 B
Docker

FROM python:2.7.18-alpine
WORKDIR /app
COPY install_deps.sh requirements.txt ./
RUN ./install_deps.sh
COPY . .
ENV PYTHONPATH=src
CMD [ "python2", "-m", "robot_interface.main" ]