Skip to content

Commit caf499b

Browse files
committed
refactor: move entry point to expo as proxy
1 parent 5cfaee2 commit caf499b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ FROM bycedric/expo-cli:3
22

33
COPY entrypoint.sh LICENSE.md README.md /
44

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+
59
# increase node's default memory limit to 4gb
610
# see: https://github.com/expo/expo-github-action/#overwriting-node_options
711
ENV NODE_OPTIONS="--max_old_space_size=4096"
812

9-
ENTRYPOINT ["/entrypoint.sh"]
13+
ENTRYPOINT ["/usr/local/bin/expo"]

0 commit comments

Comments
 (0)