fucking adduser
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-05-20 15:43:41 +02:00
parent 15095f2d9f
commit d8e0819f00

View File

@ -1,7 +1,7 @@
FROM openjdk:11-jre
ENV APPLICATION_USER ktor
RUN adduser --defaults --gid '' $APPLICATION_USER
RUN useradd $APPLICATION_USER
RUN mkdir /app
RUN chown -R $APPLICATION_USER /app