Skip to content

Commit d5ef31b

Browse files
committed
feat: initialize project with Docker setup, TypeScript configuration, and Vite build system
1 parent 46bcddd commit d5ef31b

7 files changed

Lines changed: 4076 additions & 0 deletions

File tree

actions/shopify-action/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.env
2+
node_modules/
3+
dist/

actions/shopify-action/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:24-alpine
2+
3+
WORKDIR /app
4+
5+
COPY package.json package-lock.json* ./
6+
7+
RUN npm install
8+
9+
COPY . .
10+
11+
RUN npm run build
12+
13+
CMD ["npm", "run", "start"]

actions/shopify-action/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)