Files
Athou_commafeed/commafeed-server/src/main/docker/Dockerfile.native

13 lines
285 B
Docker
Raw Normal View History

FROM debian:12.11@sha256:0d8498a0e9e6a60011df39aab78534cfe940785e7c59d19dfae1eb53ea59babe
ARG TARGETARCH
2024-08-11 22:04:35 +02:00
EXPOSE 8082
RUN mkdir -p /commafeed/data
VOLUME /commafeed/data
COPY artifacts/commafeed-*-${TARGETARCH}-runner /commafeed/application
WORKDIR /commafeed
2024-08-19 10:29:35 +02:00
2024-08-11 22:04:35 +02:00
CMD ["./application"]