byedpi/docker/Dockerfile

12 lines
128 B
Docker
Raw Normal View History

2024-08-10 15:04:33 +00:00
FROM ubuntu:latest
RUN apt-get update && apt-get install -y make
COPY . /app
WORKDIR /app
RUN make
ENTRYPOINT ["./ciadpi"]