Diff of /Dockerfile [000000] .. [a378de]

Switch to unified view

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