mirror of
https://github.com/dmunozv04/iSponsorBlockTV.git
synced 2026-01-27 04:40:51 +03:00
17 lines
241 B
Docker
17 lines
241 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.10-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y gcc
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY main.py .
|
|
|
|
ENTRYPOINT ["python3", "main.py"]
|