8 lines
147 B
Docker
8 lines
147 B
Docker
|
FROM rust:1.73-alpine3.18
|
||
|
|
||
|
#install build tooling
|
||
|
RUN rustup component add rustfmt
|
||
|
|
||
|
# install gitea act_runner dependencies
|
||
|
RUN apk add nodejs git
|