From 1d88d9967512a4c0395a770ed4747ef342f492a5 Mon Sep 17 00:00:00 2001 From: Giuseppe Valente Date: Tue, 4 Jan 2022 17:53:09 -0800 Subject: [PATCH] Dockerfile: delete workspace --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7743ac7..f8c293f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,5 +3,7 @@ FROM python:3.10.1-alpine3.15 COPY ./ /yamllint WORKDIR /yamllint RUN python setup.py -v install +WORKDIR / +RUN rm -rf /yamllint ENTRYPOINT ["yamllint"]