Skip to content

Commit 04dbda3

Browse files
committed
Install direnv
1 parent f9761bb commit 04dbda3

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
uses: actions/checkout@v2
2727

2828
- name: Login to DockerHub
29-
uses: docker/login-action@v1
29+
uses: docker/login-action@v2
3030
with:
3131
username: ${{ secrets.DOCKERHUB_USERNAME }}
3232
password: ${{ secrets.DOCKERHUB_TOKEN }}
3333

3434
- name: Set up QEMU
35-
uses: docker/setup-qemu-action@v1
35+
uses: docker/setup-qemu-action@v2
3636

3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v2
3939

4040
- name: Cache Docker layers
4141
uses: actions/cache@v2
@@ -44,7 +44,7 @@ jobs:
4444
key: ${{ runner.os }}-buildx-${{ github.sha }}-${{ matrix.image }}
4545

4646
- name: Build and push
47-
uses: docker/build-push-action@v2
47+
uses: docker/build-push-action@v3
4848
with:
4949
context: .
5050
push: true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DOCKER_BUILDKIT=1
77
RUN apk update && \
88
apk upgrade && \
99
# Install extra deps
10-
apk add --no-cache make git curl wget && \
10+
apk add --no-cache make git curl wget direnv && \
1111
# Basic check it works
1212
docker -v && \
1313
docker-compose -v

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ Preinstalled:
2222
- make
2323
- git
2424
- wget
25-
- curl
25+
- curl
26+
- direnv

0 commit comments

Comments
 (0)