We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1623c1 commit 9a85f8bCopy full SHA for 9a85f8b
.github/workflows/main.yml
@@ -6,7 +6,7 @@ on:
6
7
jobs:
8
build-container:
9
- runs-on: ubuntu-latest
+ runs-on: alpine-latest
10
defaults:
11
run:
12
working-directory: ./
Dockerfile
@@ -1,9 +1,10 @@
1
-FROM ubuntu:latest
+FROM alpine:latest
2
3
COPY . .
4
5
-RUN apt-get -y update && \
- apt-get install -y \
+RUN apk update && \
+ apk upgrade && \
+ apk add \
make \
g++ \
git \
0 commit comments