init dockerfile

This commit is contained in:
Spencer Heywood
2026-01-16 17:32:23 -07:00
parent f11f7bb9e0
commit 8fd48c5e5f
2 changed files with 25 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM docker.io/python:3.14
COPY . /app
WORKDIR /data
# Install contact
RUN python -m pip install /app && rm -rf /app
VOLUME /data
ENTRYPOINT [ "contact" ]