Skip to content

Commit

Permalink
updated docker and git action name
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwas1 committed Nov 15, 2023
1 parent 536faea commit f485812
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Studio API Build Workflow
name: Studio Server Build Workflow

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Studio API Release Docker Workflow
name: Studio Server Release Docker Workflow

on: push

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Studio API Release Workflow
name: Studio Server Release Workflow

on:
push:
Expand Down
9 changes: 3 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
FROM node:16
WORKDIR /usr/src/app
COPY ./package.json .
COPY ./yarn.lock .
COPY ./tsconfig.json .
RUN yarn
# RUN yarn build:nest
COPY ./hypersign.json .
RUN npm install
COPY . .
CMD ["yarn", "start:dev"]


CMD ["npm", "start"]



Expand Down

0 comments on commit f485812

Please sign in to comment.