Skip to content
Snippets Groups Projects
Select Git revision
  • cd8855c2164a554a9380a09b6b647b836f455efb
  • master default protected
  • L2SDP-LIFT
  • L2SDP-1113
  • HPR-158
5 results

fft_r2_wide.vhd

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 254 B
    FROM ubuntu:20.04
    
    # Just copy everything
    COPY . /pypcc
    
    RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git && \
        pip3 install -r /pypcc/requirements.txt
    
    WORKDIR /pypcc
    
    # install pypcc package
    RUN python3 setup.py install