FROM alpine:latest RUN apk update && \ apk add --no-cache build-base sqlite sqlite-dev WORKDIR /app COPY . . RUN make ENTRYPOINT ["./dbapp"]