c-dmitriy.icu/Dockerfile

12 lines
112 B
Docker

FROM ubuntu
WORKDIR /app
COPY . /app
EXPOSE $PORT
RUN apt update -y && apt install make clang -y
RUN make