chirpstack-docker/forwarder/Dockerfile
2022-10-13 21:10:48 +08:00

12 lines
227 B
Docker

FROM python:3.7-slim-buster
COPY requirements.txt ./
RUN apt-get update && apt-get install -y cmake
RUN pip install -r ./requirements.txt
COPY app.py ./
CMD ["python", "app.py"]
RUN adduser --system forwarder
USER forwarder