summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 9bf9e0836c7581ba45815ffc98eb800d749329bb (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 -U -u 1000 -d /build -M build
RUN chown build:build /build

USER build
WORKDIR /build