mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
12 lines
223 B
Docker
12 lines
223 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", "main.py"] |