summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: f1846788b7f933b66248c42e4c07e09e87ea1822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM debian:11.0

RUN apt-get update && apt-get -y install build-essential && apt-get clean

RUN mkdir /opt/sysroot

RUN mkdir /build
RUN useradd -r -U -u 1000 -d /build -M build
RUN chown build:build /build

USER build
WORKDIR /build