tidy-html5/Dockerfile
Emelie Graven d1a8c2cbbc
All checks were successful
continuous-integration/drone/push Build is passing
Add 5.2.0
2021-11-24 13:30:16 +01:00

16 lines
366 B
Docker

FROM debian:stable-slim AS builder
RUN apt-get update -y && \
apt-get install -y git cmake make build-essential gcc
WORKDIR /build
COPY . .
RUN cd build/cmake
RUN cmake /build -DCMAKE_BUILD_TYPE=Release
RUN make
RUN make install
FROM debian:stable-slim AS runtime
COPY --from=builder /usr/local/bin/tidy /usr/local/bin/tidy
ENTRYPOINT [ "/usr/local/bin/tidy" ]