File tree 7 files changed +32
-15
lines changed
7 files changed +32
-15
lines changed Original file line number Diff line number Diff line change
1
+ quiet : true
2
+ skip-check : CKV_DOCKER_7
Original file line number Diff line number Diff line change 6
6
- opened
7
7
- reopened
8
8
9
+ permissions :
10
+ issues : write
11
+
9
12
jobs :
10
13
add-issue-labels :
11
- permissions :
12
- issues : write
13
14
secrets :
14
15
ORG_MEMBERSHIP_TOKEN : ${{ secrets.ORG_MEMBERSHIP_TOKEN }}
15
16
SENZING_MEMBERS : ${{ secrets.SENZING_MEMBERS }}
Original file line number Diff line number Diff line change 8
8
CREATOR : ${{ github.event.pull_request.user.login }}
9
9
GITHUB_TOKEN : ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
10
10
11
+ permissions :
12
+ repository-projects : write
13
+
11
14
jobs :
12
15
add-to-project-dependabot :
13
16
name : add issue to Senzing Community project
Original file line number Diff line number Diff line change 6
6
- opened
7
7
- reopened
8
8
9
+ permissions :
10
+ repository-projects : write
11
+
9
12
jobs :
10
13
add-to-project :
11
14
name : add issue to project
Original file line number Diff line number Diff line change 5
5
branches : [main]
6
6
types : [closed]
7
7
8
+ permissions :
9
+ repository-projects : write
10
+
8
11
jobs :
9
12
move-pr-to-done-dependabot :
10
13
secrets :
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: pylint
2
2
3
3
on : [push]
4
4
5
+ permissions :
6
+ contents : read
7
+
5
8
jobs :
6
9
pylint :
7
10
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ FROM ${BASE_IMAGE}
4
4
ENV REFRESHED_AT=2022-12-21
5
5
6
6
LABEL Name="senzing/code-snippets" \
7
-
8
- Version="0.0.1"
7
+
8
+ Version="0.0.1"
9
9
10
10
# Run as "root" for system installation.
11
11
@@ -14,24 +14,26 @@ USER root
14
14
# Install packages via apt.
15
15
16
16
RUN apt-get update \
17
- && apt-get -y install \
18
- vim \
19
- nano \
20
- curl \
21
- less \
22
- python3 \
23
- ipython3 \
24
- python3-pip \
25
- python3-virtualenv \
26
- python3-venv \
27
- && rm -rf /var/lib/apt/lists/*
17
+ && apt-get -y install \
18
+ vim \
19
+ nano \
20
+ curl \
21
+ less \
22
+ python3 \
23
+ ipython3 \
24
+ python3-pip \
25
+ python3-virtualenv \
26
+ python3-venv \
27
+ && rm -rf /var/lib/apt/lists/*
28
28
29
29
# # Copy files from repository.
30
30
31
31
COPY ./Python/ /code-snippets/Python
32
32
COPY ./Resources/ /code-snippets/Resources
33
33
COPY ./rootfs /
34
34
35
+ HEALTHCHECK CMD ["/app/healthcheck.sh" ]
36
+
35
37
# Make non-root container.
36
38
37
39
USER 1001
You can’t perform that action at this time.
0 commit comments