66
loading...
This website collects cookies to deliver better user experience
FROM node:16.4
WORKDIR /app
COPY package.json /app
RUN npm install --production --legacy-peer-deps
COPY . /app
RUN npm run build
CMD npm run start
EXPOSE 8081
Dockerfile
.dockerignore
node_modules
npm-debug.log
docker build -t <project_name> .
docker run -p 8081:8081 <project_name>
ngrok http <PORT>
where PORT is the port your apps server is listening on.https://<ngrok_url>/auth?shop=<store_name>.myshopify.com