Skip to content

Commit e9dda68

Browse files
committed
fix: dockerfile
1 parent 24545ba commit e9dda68

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/helpers/docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ COPY --from=tmp --chown=supertokens /usr/lib/supertokens /usr/lib/supertokens
4242
COPY --from=tmp --chown=supertokens /usr/bin/supertokens /usr/bin/supertokens
4343
COPY ./supertokens-postgresql-plugin/.github/helpers/docker/docker-entrypoint.sh /usr/local/bin/
4444
RUN echo "$(md5sum /usr/lib/supertokens/config.yaml | awk '{ print $1 }')" >> /CONFIG_HASH
45-
RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
45+
RUN ln -s /usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
46+
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
4647
EXPOSE 3567
4748
USER "supertokens"
48-
ENTRYPOINT ["docker-entrypoint.sh"]
49+
ENTRYPOINT ["/entrypoint.sh"]
4950
CMD ["supertokens", "start"]

0 commit comments

Comments
 (0)