summaryrefslogtreecommitdiff
path: root/examples/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Dockerfile')
-rw-r--r--examples/Dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/Dockerfile b/examples/Dockerfile
new file mode 100644
index 000000000..080fa0744
--- /dev/null
+++ b/examples/Dockerfile
@@ -0,0 +1,7 @@
+FROM python:3.10.10-alpine3.17
+
+COPY ./ /tmp/build
+WORKDIR /tmp/build
+RUN python -m pip install --no-cache-dir . && rm -rf /tmp/build
+
+ENTRYPOINT ["pylint"]