diff Dockerfile.server @ 11:6622bacb0b84

first pass at reorg
author drewp@bigasterisk.com
date Thu, 11 Jul 2024 18:15:44 -0700
parents search/Dockerfile@f23b21bd0fce
children b9c2b7fedbcd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Dockerfile.server	Thu Jul 11 18:15:44 2024 -0700
@@ -0,0 +1,11 @@
+FROM reg:5000/base_basic
+
+WORKDIR /opt
+
+COPY pyproject.toml pdm.lock ./
+RUN pdm sync
+
+RUN pdm run python -c 'import nltk; nltk.download("punkt")'
+
+COPY env ./
+COPY scobot/** ./scobot/
\ No newline at end of file