Skip to content

Commit 9a85f8b

Browse files
committed
Upd Dockerfile
1 parent c1623c1 commit 9a85f8b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build-container:
9-
runs-on: ubuntu-latest
9+
runs-on: alpine-latest
1010
defaults:
1111
run:
1212
working-directory: ./

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM ubuntu:latest
1+
FROM alpine:latest
22

33
COPY . .
44

5-
RUN apt-get -y update && \
6-
apt-get install -y \
5+
RUN apk update && \
6+
apk upgrade && \
7+
apk add \
78
make \
89
g++ \
910
git \

0 commit comments

Comments
 (0)