Select Git revision
Dockerfile
Jasper Annyas authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 363 B
FROM ubuntu:20.04
COPY requirements.txt /requirements.txt
ENV A = A
RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git && \
pip3 install -r requirements.txt && \
git clone --depth 1 --branch master https://git.astron.nl/lofar2.0/pypcc
WORKDIR /pypcc
CMD ["python3","pypcc2.py","--simulator", "--port=4844", "--config=UNB2"]