mirror of
https://git.isriupjv.fr/ISRI/ai-server
synced 2025-04-24 01:58:12 +02:00
17 lines
271 B
Docker
17 lines
271 B
Docker
FROM python:3.12
|
|
|
|
# copy the application
|
|
WORKDIR /app
|
|
COPY ./ ./
|
|
|
|
# install the dependencies
|
|
RUN pip3 install -r ./requirements.txt
|
|
|
|
# expose the API port
|
|
EXPOSE 8000
|
|
|
|
# environment variables
|
|
ENV MODEL_DIRECTORY=/models/
|
|
|
|
# run the server
|
|
CMD ["python3", "-m", "source"]
|