Skip to content
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.

Commit

Permalink
🐛 Fix GitHub Actions and latest requirements (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo authored Sep 17, 2021
1 parent b3a69f5 commit 5f59203
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ on:

jobs:
deploy:
strategy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Deploy Image
- name: Build and Deploy Image
run: bash scripts/build-push.sh
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ on:

jobs:
test:
strategy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Deploy Image
- name: Build Image
run: bash scripts/build.sh
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker:latest

RUN apk add --no-cache py3-pip python3-dev libffi-dev openssl-dev curl gcc libc-dev make && \
RUN apk add --no-cache py3-pip python3-dev libffi-dev openssl-dev curl gcc libc-dev rust cargo make && \
pip3 install docker-compose

0 comments on commit 5f59203

Please sign in to comment.