mirror of
https://github.com/9001/copyparty.git
synced 2025-09-28 12:42:26 -06:00
19 lines
681 B
Docker
19 lines
681 B
Docker
FROM alpine:latest
|
|
WORKDIR /z
|
|
LABEL org.opencontainers.image.url="https://github.com/9001/copyparty" \
|
|
org.opencontainers.image.source="https://github.com/9001/copyparty" \
|
|
org.opencontainers.image.licenses="MIT" \
|
|
org.opencontainers.image.title="copyparty-min" \
|
|
org.opencontainers.image.description="just copyparty, no thumbnails / media tags / audio transcoding"
|
|
ENV XDG_CONFIG_HOME=/cfg
|
|
|
|
RUN apk --no-cache add !pyc \
|
|
py3-jinja2
|
|
|
|
COPY i/dist/copyparty-sfx.py innvikler.sh ./
|
|
RUN ash innvikler.sh min
|
|
|
|
WORKDIR /w
|
|
EXPOSE 3923
|
|
ENTRYPOINT ["python3", "-m", "copyparty", "--no-crt", "--no-thumb", "-c", "/z/initcfg"]
|