Dockerfile 215 B

1234567891011121314151617
  1. FROM ubuntu:latest
  2. RUN apt-get update
  3. RUN apt-get -y install git
  4. RUN apt-get -y install build-essential
  5. WORKDIR /
  6. RUN git clone https://github.com/opcm/pcm.git
  7. WORKDIR /pcm
  8. RUN make
  9. ENTRYPOINT ["/pcm/pcm.x"]