mirror of
https://github.com/optim-enterprises-bv/openlan-cgw.git
synced 2025-12-30 18:30:57 +00:00
11 lines
244 B
Docker
11 lines
244 B
Docker
FROM ubuntu
|
|
|
|
COPY ./requirements.txt /tmp/requirements.txt
|
|
WORKDIR /opt/client_simulator
|
|
|
|
RUN apt-get update -q -y && apt-get -q -y --no-install-recommends install \
|
|
python3 \
|
|
python3-pip
|
|
RUN python3 -m pip install -r /tmp/requirements.txt
|
|
|