14 lines
283 B
Text
14 lines
283 B
Text
|
|
FROM python:3.12-slim
|
||
|
|
|
||
|
|
WORKDIR /srv
|
||
|
|
|
||
|
|
COPY app/requirements.txt app/requirements.txt
|
||
|
|
RUN pip install --no-cache-dir -r app/requirements.txt
|
||
|
|
|
||
|
|
COPY app/ app/
|
||
|
|
COPY handicap_engine.py handicap_engine.py
|
||
|
|
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|