[d42376]: / Dockerfile

Download this file

16 lines (11 with data), 438 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
FROM python:3.12.9-slim-bookworm
COPY src/*.py /usr/src/app/src/
COPY requirements.txt /usr/src/app/src/
COPY src/templates/ /usr/src/app/src/templates/
COPY src/static/ /usr/src/app/src/static
COPY src/uploads /usr/src/app/src/uploads/
COPY models/MLII-latest.keras /usr/src/app/src/models/
COPY training2017/ /usr/src/app/src/training2017/
WORKDIR /usr/src/app/src/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt