mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
06b38f8c94
Purpose: Ensuring that all dependencies are captured both at the container level and the python level.
12 lines
224 B
Docker
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"] |