Skip to content

Commit

Permalink
Merge pull request #13 from instriq/develop
Browse files Browse the repository at this point in the history
update security pipeline and fix Docker build
  • Loading branch information
htrgouvea authored Dec 14, 2024
2 parents ca4c822 + a3e4408 commit e35a45b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Security Gate - LESIS

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
Expand Down
12 changes: 10 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
FROM perl:5.40
FROM ubuntu:latest

COPY . /usr/src/sentra
WORKDIR /usr/src/sentra

RUN apt-get update && apt-get install -y \
cpanminus \
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 e35a45b

Please sign in to comment.