multithread-server/log/Dockerfile

6 lines
87 B
Docker

FROM frolvlad/alpine-gxx
COPY . /app
WORKDIR /app
RUN g++ -o log log.cpp
CMD ["./log"]