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