File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ jobs:
12
12
steps :
13
13
- name : Checkout
14
14
uses : actions/checkout@v2
15
+ - name : Set up qemu
16
+ uses : docker/setup-qemu-action@v1
17
+ with :
18
+ platforms : all
15
19
- name : Set up docker buildx
16
20
id : buildx
17
- uses : crazy-max/ghaction-docker- buildx@v3
21
+ uses : docker/setup- buildx-action@v1
18
22
with :
19
- buildx-version : latest
20
- qemu-version : latest
23
+ version : latest
21
24
- name : Login to docker registry
22
25
run : |
23
26
docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# # Image name: faucet/python3
2
2
3
- FROM faucet/base:5 .0.0
3
+ FROM faucet/base:6 .0.0
4
4
5
5
RUN apk add --no-cache python3 && \
6
6
if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \
You can’t perform that action at this time.
0 commit comments