mirror of
https://github.com/svpcom/wfb-ng.git
synced 2025-02-23 00:23:48 -04:00
17 lines
402 B
Docker
17 lines
402 B
Docker
ARG SRC_IMAGE
|
|
|
|
FROM $SRC_IMAGE
|
|
|
|
RUN apt update && \
|
|
apt install -y build-essential git wget \
|
|
virtualenv fakeroot debhelper \
|
|
libpcap-dev libsodium-dev \
|
|
python3-twisted python3-pyroute2 \
|
|
python3-future python3-all python3-all-dev \
|
|
python3-serial dh-python python3-msgpack
|
|
|
|
ENV ENV=/opt/env
|
|
ENV PYTHON=python3
|
|
RUN virtualenv --python=$PYTHON $ENV
|
|
RUN $ENV/bin/pip install stdeb
|