Fix permission denied bug (#2802)

* Fix permission denied bug

Fixing this issue:

ERROR: for greenlight-v2  Cannot start service app: OCI runtime create failed: container_linux.go:367: starting container process caused: exec: "bin/start": permission denied: unknown

* fix persian sentence

this issue appear in fa_IR locale

* Remove unnecessary change user in Dockerfile

I removed USER root and result was the same

Co-authored-by: Ahmad Farhat <ahmad.af.farhat@gmail.com>
This commit is contained in:
Milad Karimiyan 2021-09-01 02:05:47 +04:30 committed by GitHub
parent 2ff19c998d
commit c0e19f237b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -63,5 +63,8 @@ EXPOSE 80
ARG version_code
ENV VERSION_CODE=$version_code
# Set executable permission to start file
RUN chmod +x bin/start
# Start the application.
CMD ["bin/start"]