Files
simplemind/Dockerfile
T
Kurt Heiden 06b38f8c94 Add docker-compose build
Purpose: Ensuring that all dependencies are captured both at the container level and the python level.
2024-10-28 11:21:10 -06:00

12 lines
224 B
Docker

FROM python:3.12.0
RUN apt-get update -y && apt-get upgrade -y
RUN pip install --upgrade pip
COPY requirements.txt /src/requirements.txt
WORKDIR /src
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "build.py"]