Skip to content

Commit

Permalink
fix: update for using on bare metal without GHA (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
todpunk authored Nov 30, 2024
1 parent 475211d commit 07dc75e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fetch-depth: 0
- name: Get semver-tags
run: |
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.2/semver-tags.tar.gz -O - | tar -xz
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.3/semver-tags.tar.gz -O - | tar -xz
- name: Semver Tags Run
id: semver-tags
run: |
Expand All @@ -45,4 +45,4 @@ jobs:
cache-from: type=gha,mode=max
cache-to: type=gha,mode=max
no-cache: ${{ contains(github.event.head_commit.message, 'no-cache') }}
file: Dockerfile
file: Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
git config --global user.email "<[email protected]>"
- name: Get semver-tags
run: |
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.2/semver-tags.tar.gz -O - | tar -xz
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.3/semver-tags.tar.gz -O - | tar -xz
- name: Semver Tags Run
id: semver-tags
run: |
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ LABEL maintainer="Catalyst Community <[email protected]>"

WORKDIR /workspace
ARG TARGETPLATFORM=amd64
ARG RUNNER_VERSION=2.308.0
ARG RUNNER_VERSION=2.321.0
ARG DOCKER_CHANNEL=stable
ARG DOCKER_VERSION=24.0.5
ARG DOCKER_VERSION=27.3.1
ARG DUMB_INIT_VERSION=1.2.5
ARG GO_VERSION=1.21.4
ARG GO_VERSION=1.23.3

# Get all the tools in and up to date
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -59,8 +59,8 @@ RUN apt update -y \
#RUN pip3 install --upgrade --break-system-packages pip
RUN pip3 install --break-system-packages setuptools watchdog poetry yq yamllint

# Get all the node tooling in with 18.x
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
# Get all the node tooling in with 22.x
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash -
RUN apt-get install -y nodejs

RUN npm install -g yarn
Expand Down

0 comments on commit 07dc75e

Please sign in to comment.