nabarun
be08bdd7bc
Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) - Create a Shopify service that integrates Shopify ecommerce app with the Laconic wallet Co-authored-by: Neeraj <neeraj.rtly@gmail.com> Reviewed-on: #34
10 lines
87 B
Docker
10 lines
87 B
Docker
FROM node:20-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn install
|
|
|
|
CMD ["yarn", "start"]
|