Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26rc2 AS build
FROM golang:1.25.7 AS build
WORKDIR /yamllint-action
COPY go.mod go.sum /yamllint-action/
RUN go mod download
COPY . .
RUN export CGO_ENABLED=0 && go build -o ./yamllint-action .

FROM python:3.13.1-alpine3.19
RUN pip install --no-cache-dir yamllint==1.35.1 && \
RUN pip install --no-cache-dir yamllint==1.38.0 && \
adduser --disabled-password --gecos "" --home "/nonexistent" --shell "/sbin/nologin" --no-create-home --uid 10001 appuser
COPY --from=build /yamllint-action/yamllint-action /yamllint-action
COPY entrypoint.sh /entrypoint.sh
Expand Down
Loading