Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
full_node_version: v18.12.0
terraform_version: 1.3.3
terragrunt_version: 0.39.2
- node_version: 20
full_node_version: v20.9.0
terraform_version: 1.3.3
terragrunt_version: 0.39.2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -33,9 +37,9 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
build-args: |
NODE_VERSION=${{ matrix.node_version }}
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ RUN apk update
RUN apk upgrade --available
RUN apk add --no-cache curl wget zip tar python3 py3-pip git openssl openssh-client jq
RUN apk add --no-cache bash tar gzip openrc yarn ansible
RUN pip3 install --upgrade pip docker-compose yq --ignore-installed distlib
RUN pip3 install --upgrade pip --ignore-installed distlib
RUN pip3 install --upgrade yq --ignore-installed distlib
# https://github.com/docker/compose/issues/11168#issuecomment-1800362132
RUN pip install pyyaml==5.3.1
RUN pip3 install --upgrade --no-cache-dir docker-compose
RUN rm -rf /var/cache/apk/*
RUN ansible --version

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ There are 3 images for every supported nodejs runtimes (only nodejs 14, 16 and 1
- nodejs_devops:14
- nodejs_devops:16
- nodejs_devops:18
- nodejs_devops:20

## Docker image content

Expand Down