Skip to content

Commit fb71cee

Browse files
committed
Update Docker image and GitHub Action configuration
1 parent c548ba2 commit fb71cee

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2-slim
1+
FROM ruby:3.2
22

33
LABEL maintainer="Josh Bielick <[email protected]>"
44

@@ -10,7 +10,7 @@ ARG NODE_VERSION=14
1010
RUN apt-get update && apt-get install -y curl
1111

1212
RUN apt-get update && \
13-
apt-get install -y \
13+
apt-get install -y --no-install-recommends \
1414
ruby-dev \
1515
build-essential \
1616
cmake \

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name=adwerx/pronto-ruby
1+
name=ghcr.io/apptweak/pronto-ruby
22

33
image:
4-
docker build -f Dockerfile . -t ${name}:${TAG} -t ${name}:latest
4+
docker build . -f Dockerfile --platform 'linux/amd64' -t ${name}:${TAG} -t ${name}:latest
55

66
test: spec/fixtures/test.git
77
docker run -v "${CURDIR}:/runner" --workdir /runner --entrypoint /runner/dev_entrypoint.sh --rm ${name}:latest rspec

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Pronto Ruby
2-
author: jbielick@adwerx.com
2+
author: info@apptweak.com
33
description: |
44
Run pronto code review runners on your commits and pull requests
55
and get feedback as inline code annotations.
@@ -25,7 +25,7 @@ inputs:
2525
origin/master
2626
runs:
2727
using: docker
28-
image: "docker://docker.io/renatolond/pronto-ruby:adapted"
28+
image: "docker://ghcr.io/apptweak/pronto-ruby:use_head_commit"
2929
args:
3030
- run
3131
- -r

0 commit comments

Comments
 (0)