Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
FROM crowdin/cli:4.8.0

RUN apk --no-cache add curl git git-lfs jq gnupg;
RUN addgroup -g 1000 runner \
&& adduser -D -u 1000 -G runner runner

COPY . .
COPY entrypoint.sh /entrypoint.sh

RUN chmod +x /entrypoint.sh \
&& chown -R runner:runner /app /entrypoint.sh
USER ubuntu

ENTRYPOINT ["/entrypoint.sh"]