This commit is contained in:
Waylon Walker 2023-06-20 12:28:25 -05:00
parent 78cc5ff0cd
commit 70f4a89e30
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
10 changed files with 564 additions and 182 deletions

View file

@ -4,9 +4,9 @@ WORKDIR /app
Copy pyproject.toml /app
COPY learn_sql_model/__about__.py /app/learn_sql_model/__about__.py
COPY README.md /app
RUN pip3 install .
RUN pip3 install '.[api]'
COPY . /app
RUN pip3 install .
RUN pip3 install '.[api]'
EXPOSE 5000