mirror of
https://github.com/hufrea/byedpi.git
synced 2025-01-18 16:52:51 +00:00
12 lines
128 B
Docker
12 lines
128 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install -y make
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN make
|
|
|
|
ENTRYPOINT ["./ciadpi"]
|