Skip to content

Commit 9b0132c

Browse files
authoredFeb 28, 2025··
Merge pull request #1078 from supertokens/feat/webauthn-1
feat: webauthn-1
2 parents 2deea75 + efb2708 commit 9b0132c

File tree

76 files changed

+6130
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+6130
-47
lines changed
 

‎.github/helpers/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN mkdir -p supertokens-core
3434
COPY ./ supertokens-core
3535
RUN echo "org.gradle.vfs.watch=false" >> ./gradle.properties
3636
RUN ./loadModules
37-
RUN ./utils/setupTestEnv --cicd
37+
RUN ./utils/setupTestEnv --local
3838
3939
4040
FROM debian:bookworm-slim
@@ -70,5 +70,5 @@ RUN echo "$(md5sum /usr/lib/supertokens/config.yaml | awk '{ print $1 }')" >> /C
7070
RUN ln -s /usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
7171
EXPOSE 3567
7272
USER "supertokens"
73-
CMD ["/usr/lib/supertokens/jre/bin/java", "-classpath", "/usr/lib/supertokens/core/*:/usr/lib/supertokens/plugin-interface/*:/usr/lib/supertokens/ee/*", "io.supertokens.Main", "/usr/lib/supertokens", "DEV", "host=0.0.0.0", "test_mode"]
73+
CMD ["/usr/lib/supertokens/jre/bin/java", "-classpath", "/usr/lib/supertokens/core/*:/usr/lib/supertokens/plugin-interface/*:/usr/lib/supertokens/ee/*", "io.supertokens.Main", "/usr/lib/supertokens", "DEV", "host=0.0.0.0", "test_mode", "tempDirLocation=/usr/lib/supertokens/temp", "configFile=/usr/lib/supertokens/temp/config.yaml"]
7474
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

‎.github/workflows/publish-dev-docker.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "**"
66
jobs:
77
docker:
8-
runs-on: ubuntu-24.04-arm
8+
runs-on: ubuntu-latest
99
steps:
1010
- name: set tag
1111
id: set_tag
@@ -38,6 +38,5 @@ jobs:
3838
uses: docker/build-push-action@v6
3939
with:
4040
push: true
41-
platforms: linux/amd64,linux/arm64
42-
tags: ${{ vars.DOCKERHUB_USERNAME }}/supertokens-core:dev-branch-${{ steps.set_tag.outputs.TAG }}
41+
tags: supertokens/supertokens-core:dev-branch-${{ steps.set_tag.outputs.TAG }}
4342
file: .github/helpers/Dockerfile

0 commit comments

Comments
 (0)
Please sign in to comment.