Skip to content

Commit

Permalink
fix(docker): install missing DateTime dependencies for Perl
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptprivate authored Dec 12, 2024
1 parent 7290ab2 commit 7a0a987
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ FROM perl:5.40
COPY . /usr/src/sentra
WORKDIR /usr/src/sentra

RUN apt-get update && apt-get install -y \
libdatetime-perl \
libssl-dev \
libexpat1-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*

RUN cpanm --installdeps .

ENTRYPOINT [ "perl", "./sentra.pl" ]
ENTRYPOINT [ "perl", "./sentra.pl" ]

0 comments on commit 7a0a987

Please sign in to comment.