mirror of
https://github.com/dmunozv04/iSponsorBlockTV.git
synced 2026-01-27 12:50:52 +03:00
14 lines
184 B
Docker
14 lines
184 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.10-bullseye-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "python3", "main.py"]
|