Skip to content

Commit c72e53d

Browse files
committed
Remove unneeded and fragile packages
1 parent 25ddc31 commit c72e53d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Login
2323
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_TOKEN }}
2424
- name: Build
25-
run: docker buildx build -f Dockerfile.ubuntu -t myoung34/github-runner:${TAG} --output "type=image,push=true" --platform linux/amd64,linux/arm/v7,linux/arm64 .
25+
run: docker buildx build -f Dockerfile -t myoung34/github-runner:${TAG} --output "type=image,push=true" --platform linux/amd64,linux/arm/v7,linux/arm64 .
2626
ubuntu_bionic_deploy:
2727
runs-on: ubuntu-latest
2828
steps:
@@ -37,6 +37,8 @@ jobs:
3737
version: latest
3838
- name: Available platforms
3939
run: echo ${{ steps.buildx.outputs.platforms }}
40+
- name: Copy Dockerfile
41+
run: cp Dockerfile Dockerfile.ubuntu-bionic; sed -i.bak 's/FROM.*/FROM ubuntu:bionic/' Dockerfile.ubuntu-bionic
4042
- name: Login
4143
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_TOKEN }}
4244
- name: Build
@@ -55,6 +57,8 @@ jobs:
5557
version: latest
5658
- name: Available platforms
5759
run: echo ${{ steps.buildx.outputs.platforms }}
60+
- name: Copy Dockerfile
61+
run: cp Dockerfile Dockerfile.ubuntu-xenial; sed -i.bak 's/FROM.*/FROM ubuntu:xenial/' Dockerfile.ubuntu-xenial
5862
- name: Login
5963
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_TOKEN }}
6064
- name: Build

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ RUN apt-get update && \
1818
build-essential \
1919
zlib1g-dev \
2020
gettext \
21-
liblttng-ust-ctl4 \
2221
liblttng-ust0 \
23-
liburcu6 \
2422
libcurl4-openssl-dev \
2523
inetutils-ping \
2624
&& rm -rf /var/lib/apt/lists/* \

0 commit comments

Comments
 (0)