Skip to content

Commit

Permalink
Merge branch 'main' into lifecycle-tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanDelaney authored Oct 17, 2024
2 parents 4c7092c + f50368c commit 3124781
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/styles/config/vocabularies/Buildpacks/accept.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
API(?s)
[Bb]uildpack(?s)
config
Dockerfile(?s)
GitHub
mixin(?s)
prepended
rebase
Rebasing
SBOM(?s)
semver
Syft
2 changes: 1 addition & 1 deletion .github/workflows/vale-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: errata-ai/vale-action@reviewdog
- uses: errata-ai/vale-action@v2.1.1
with:
fail_on_error: true
token: ${{secrets.GITHUB_TOKEN}}
Expand Down
2 changes: 0 additions & 2 deletions .vale/styles/confg/vocabularies/Buildpacks/accept.txt

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ FROM ubuntu:jammy
# Install packages that we want to make available at run time
RUN apt-get update && \
apt-get install -y xz-utils ca-certificates && \
rm -rf /var/lib/apt/lists/* \
rm -rf /var/lib/apt/lists/*

# Create user and group
ARG cnb_uid=1000
ARG cnb_gid=1000
RUN groupadd cnb --gid ${cnb_gid} && \
useradd --uid ${cnb_uid} --gid ${cnb_gid} -m -s /bin/bash cnb \
useradd --uid ${cnb_uid} --gid ${cnb_gid} -m -s /bin/bash cnb

# Set user and group
USER ${cnb_uid}:${cnb_gid}
Expand Down

0 comments on commit 3124781

Please sign in to comment.