3
0

Einstieg Doku

This commit is contained in:
2024-10-30 22:12:51 +01:00
parent 807e7cefb6
commit ebe4a58f90
15 changed files with 204 additions and 144 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
ARG IMAGE_FROM
FROM $IMAGE_FROM
# become root
USER root
# do somthing as root, e.g. install packages, set up things ...
# RUN ...
# copy the source of the agent in this repo
COPY --chown=user:user ./src/ /ums-agenten/project/src/
# fix permissions
RUN chown -R user:user /ums-agenten
# switch back to user
USER user