mirror of
https://github.com/TeamPiped/sponsorblock-mirror.git
synced 2026-06-23 05:25:51 +00:00
16 lines
332 B
Text
16 lines
332 B
Text
FROM debian:stable-slim
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
libssl1.1 libpq5 ca-certificates && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app/
|
|
|
|
COPY ./sponsorblock-mirror .
|
|
COPY ./Rocket.toml .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["/app/sponsorblock-mirror"]
|