forked from Archives/Athou_commafeed
11 lines
196 B
Docker
11 lines
196 B
Docker
FROM debian:12.7
|
|
EXPOSE 8082
|
|
|
|
RUN mkdir -p /commafeed/data
|
|
VOLUME /commafeed/data
|
|
|
|
COPY commafeed-server/target/commafeed-*-runner /commafeed/application
|
|
WORKDIR /commafeed
|
|
|
|
CMD ["./application"]
|