mirror of https://github.com/stashapp/stash.git
23 lines
932 B
Docker
23 lines
932 B
Docker
FROM --platform=$BUILDPLATFORM alpine:latest AS binary
|
|
ARG TARGETPLATFORM
|
|
WORKDIR /
|
|
COPY stash-* /
|
|
RUN if [ "$TARGETPLATFORM" = "linux/arm/v6" ]; then BIN=stash-linux-arm32v6; \
|
|
elif [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then BIN=stash-linux-arm32v7; \
|
|
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then BIN=stash-linux-arm64v8; \
|
|
elif [ "$TARGETPLATFORM" = "linux/amd64" ]; then BIN=stash-linux; \
|
|
fi; \
|
|
mv $BIN /stash
|
|
|
|
FROM --platform=$TARGETPLATFORM alpine:latest AS app
|
|
COPY --from=binary /stash /usr/bin/
|
|
RUN apk add --no-cache --virtual .build-deps gcc python3-dev musl-dev \
|
|
&& apk add --no-cache ca-certificates python3 py3-requests py3-requests-toolbelt py3-lxml py3-pip ffmpeg vips-tools ruby tzdata \
|
|
&& pip install mechanicalsoup cloudscraper bencoder.pyx \
|
|
&& gem install faraday \
|
|
&& apk del .build-deps
|
|
ENV STASH_CONFIG_FILE=/root/.stash/config.yml
|
|
|
|
EXPOSE 9999
|
|
CMD ["stash"]
|