12 lines
139 B
Docker
12 lines
139 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /build
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "build.py"]
|