mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
13 lines
280 B
Docker
13 lines
280 B
Docker
FROM debian:13.3@sha256:2c91e484d93f0830a7e05a2b9d92a7b102be7cab562198b984a84fdbc7806d91
|
|
ARG TARGETARCH
|
|
|
|
EXPOSE 8082
|
|
|
|
RUN mkdir -p /commafeed/data
|
|
VOLUME /commafeed/data
|
|
|
|
COPY artifacts/commafeed-*-${TARGETARCH}-runner /commafeed/commafeed
|
|
WORKDIR /commafeed
|
|
|
|
CMD ["./commafeed"]
|