Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .tool-versions

This file was deleted.

4 changes: 0 additions & 4 deletions actions/gls-action/.example.env

This file was deleted.

4 changes: 3 additions & 1 deletion actions/gls-action/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.env
.env
node_modules/
dist/
13 changes: 4 additions & 9 deletions actions/gls-action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,12 @@ FROM node:24-alpine

WORKDIR /app

COPY code0-tech-* ./
COPY package.json package-lock.json* ./

COPY package.json package-lock.json tsconfig.base.json turbo.json ./
RUN npm install

COPY actions/gls-action ./actions/gls-action

RUN npm ci

WORKDIR /app/actions/gls-actions
COPY . .

RUN npm run build


CMD ["npm", "run", "start", "-w", "@code0-tech/gls-action"]
CMD ["npm", "run", "start"]
Loading
Loading