Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
ci: add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
y-eight committed Mar 23, 2023
1 parent 13a0841 commit 6d9f4b6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM dockerhub.devops.telekom.de/alpine:3.16
ADD ./build /app
WORKDIR /app
ARG user_id=1001
RUN adduser -S $user_id -G root -u $user_id \
&& chown -R $user_id:root /app

USER $user_id

ENTRYPOINT ["/app/cbot"]

0 comments on commit 6d9f4b6

Please sign in to comment.