Skip to content
Snippets Groups Projects
Select Git revision
  • ab04b9823845fe6f4d68cc0a5eedd38f9f2f233e
  • master default protected
  • dither_on_off_disabled
  • yocto
  • pypcc2
  • pypcc3
  • 2020-12-07-the_only_working_copy
  • v2.0
  • v1.0
  • v0.9
  • Working-RCU_ADC,ID
  • 2020-12-11-Holiday_Season_release
12 results

Dockerfile

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