Refactor into module
Add Dockerfile with kluges Update portfolio
This commit is contained in:
parent
2be144c378
commit
53895b6f65
9 changed files with 37 additions and 8 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM python:3.12-bookworm
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
COPY site_mcknight_tech /site
|
||||
COPY requirements.txt /tmp/requirements.txt
|
||||
RUN pip install -r /tmp/requirements.txt
|
||||
|
||||
ENTRYPOINT [ "python3", "/site/__main__.py" ]
|
Loading…
Add table
Add a link
Reference in a new issue