commit fb2c20c301e57e4df7093d948a3f26a9b6dd0ffd from: Omar Polo date: Thu Jan 21 13:49:52 2021 UTC fix dockerfile now we have also some sub-directories, COPY . . is more future-proof at this point. commit - 86939cb45bd3dc4de80a21254506fdabbb6f731b commit + fb2c20c301e57e4df7093d948a3f26a9b6dd0ffd blob - af40413d9d0923b733fd7c71edc57fb885a93d11 blob + edabcb264a4a2e23c4e03661b797ccc97bd89326 --- Dockerfile +++ Dockerfile @@ -1,8 +1,8 @@ FROM alpine as builder WORKDIR /build RUN apk update && apk upgrade && apk add alpine-sdk linux-headers libressl-dev flex bison -COPY *.c *.h lex.l parse.y Makefile ./ -RUN make gmid +COPY . . +RUN make clean gmid FROM alpine RUN apk update && apk upgrade && apk add libressl