kamiwork commited on
Commit
6febd10
·
verified ·
1 Parent(s): 2b41885

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -0
Dockerfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ubuntu:22.04
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive
4
+
5
+ # Install dependencies + GitHub runner
6
+ RUN apt-get update && apt-get install -y \
7
+ curl jq git sudo ca-certificates \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ WORKDIR /runner
11
+
12
+ # Download GitHub Actions runner
13
+ RUN curl -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-x64-2.314.1.tar.gz | tar zx
14
+ RUN ./bin/installdependencies.sh
15
+
16
+ # Copy entrypoint
17
+ COPY entrypoint.sh /entrypoint.sh
18
+ RUN chmod +x /entrypoint.sh
19
+
20
+ ENTRYPOINT ["/entrypoint.sh"]