Initial commit
This commit is contained in:
23
xreports/Dockerfile
Normal file
23
xreports/Dockerfile
Normal file
@ -0,0 +1,23 @@
|
||||
FROM debian:bookworm AS base
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
apache2 \
|
||||
postgresql \
|
||||
unzip \
|
||||
wget \
|
||||
locales \
|
||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN dpkg-reconfigure locales
|
||||
|
||||
FROM base AS installer
|
||||
|
||||
COPY . /home/dist
|
||||
|
||||
RUN dpkg -i /home/dist/xsquare.xreports_3.3.3.6.deb
|
||||
|
||||
WORKDIR /usr/local/xsquare.xreports
|
||||
|
||||
CMD ["/usr/local/xsquare.xreports/xreports"]
|
Reference in New Issue
Block a user