Files
auth0mock/Dockerfile
T
argoyle fa022bb9e0 ci(Dockerfile): update Node.js base image version
Replace Node.js base image with a specific amd64 version 
to ensure compatibility and stability in the build process.
2025-02-26 18:35:42 +01:00

13 lines
387 B
Docker

FROM amd64/node:22.14.0@sha256:32ad68e28d3eb06c388fc9d87f2143c2df157d4e99ade9024189513238c0b838
ENV AUDIENCE="https://shiny.unbound.se"
ENV ORIGIN_HOST="auth0mock"
ENV ORIGIN="https://auth0mock:3333"
EXPOSE 3333
WORKDIR /app
ADD package.json yarn.lock /app/
RUN yarn install --frozen-lockfile
ADD *.js /app/
ADD public /app/public
RUN mkdir -p /root/.config
ENTRYPOINT ["yarn", "start"]