Skip to content

Commit

Permalink
fix: align cli building with daemon (#29)
Browse files Browse the repository at this point in the history
* fix: align cli building with daemon

* feat: rename daemon dockerfile to default name
  • Loading branch information
vgorkavenko authored Sep 19, 2024
1 parent 1e4579e commit 2ac400f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion Dockerfile.cli
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:20.12.1-alpine as building
WORKDIR /app

COPY package.json yarn.lock ./
COPY ./tsconfig*.json ./
COPY ./tsconfig*.json ./nest-cli.json ./.swcrc ./
COPY ./src ./src

RUN yarn install --frozen-lockfile --non-interactive && yarn cache clean && yarn typechain
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
daemon:
build:
context: .
dockerfile: ./Dockerfile.daemon
dockerfile: ./Dockerfile
container_name: prover-daemon
restart: unless-stopped
environment:
Expand Down

0 comments on commit 2ac400f

Please sign in to comment.