We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cfaee2 commit caf499bCopy full SHA for caf499b
1 file changed
Dockerfile
@@ -2,8 +2,12 @@ FROM bycedric/expo-cli:3
2
3
COPY entrypoint.sh LICENSE.md README.md /
4
5
+# move the entry point as proxy command for expo itself
6
+# see: https://github.com/expo/expo-github-action/#automatic-expo-login
7
+RUN mv entrypoint.sh /usr/local/bin/expo
8
+
9
# increase node's default memory limit to 4gb
10
# see: https://github.com/expo/expo-github-action/#overwriting-node_options
11
ENV NODE_OPTIONS="--max_old_space_size=4096"
12
-ENTRYPOINT ["/entrypoint.sh"]
13
+ENTRYPOINT ["/usr/local/bin/expo"]
0 commit comments