20 lines
683 B
Docker
20 lines
683 B
Docker
FROM debian:bookworm
|
|
|
|
RUN set -eux \
|
|
&& apt-get update \
|
|
&& export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get install -y curl gpg \
|
|
&& curl https://build.opensuse.org/projects/home:jfita:numerus/signing_keys/download?kind=gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/obs-numerus.gpg \
|
|
&& echo 'deb [signed-by=/etc/apt/trusted.gpg.d/obs-numerus.gpg] http://download.opensuse.org/repositories/home:/jfita:/numerus/Debian_12/ ./' >> /etc/apt/sources.list.d/numerus.list \
|
|
&& apt-get remove --purge -y curl gpg \
|
|
&& apt-get autoremove --purge -y \
|
|
&& apt-get update \
|
|
&& apt-get install -y numerus \
|
|
&& apt-get clean
|
|
|
|
EXPOSE 8080
|
|
|
|
WORKDIR /usr/share/numerus
|
|
|
|
CMD ["numerus"]
|