mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-02-12 23:07:05 +08:00
12 lines
193 B
Docker
12 lines
193 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.10-slim-buster
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python3", "rename_qb.py"] |