mirror of
https://github.com/dmunozv04/iSponsorBlockTV.git
synced 2026-01-27 04:40:51 +03:00
13 lines
191 B
Docker
13 lines
191 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.10-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "python3", "main.py"] |