mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-22 18:55:33 +00:00
a7bed2ebde
docs(Dockerfile): Add Dockerfile for containerized execution of MKBSD
11 lines
167 B
Docker
11 lines
167 B
Docker
FROM --platform=${BUILDPLATFORM} python:3.9.20-slim-bookworm
|
|
|
|
RUN pip install aiohttp
|
|
VOLUME /app/downloads
|
|
|
|
WORKDIR /app
|
|
COPY mkbsd.py .
|
|
|
|
CMD ["python", "mkbsd.py"]
|
|
|