mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
10 lines
203 B
Docker
10 lines
203 B
Docker
|
|
FROM debian:12.6
|
||
|
|
EXPOSE 8082
|
||
|
|
|
||
|
|
RUN mkdir -p /commafeed/data
|
||
|
|
VOLUME /commafeed/data
|
||
|
|
|
||
|
|
COPY commafeed-server/target/commafeed-*-runner /commafeed/app/application
|
||
|
|
WORKDIR /commafeed/app
|
||
|
|
CMD ["./application"]
|