Skip to content
Merged
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: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ steps.release.outputs.tag_name }}
ref: ${{ needs.release-please.outputs.release_tag_name }}

- name: Log in to the Container registry
uses: docker/login-action@v2
Expand Down
4 changes: 2 additions & 2 deletions packages/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:20.3-bullseye AS builder
WORKDIR /tmp/playground/
COPY package*.json workspace.json tsconfig*.json nx.json babel.config.json ./
COPY package*.json tsconfig*.json nx.json babel.config.json ./
COPY schemas/ ./schemas/
RUN npm install
RUN npm ci
COPY packages/ ./packages/
RUN npm run build:app

Expand Down
4 changes: 2 additions & 2 deletions packages/fibonacci-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:20.3-bullseye-slim AS builder
WORKDIR /tmp/playground/
COPY package*.json workspace.json tsconfig*.json nx.json babel.config.json ./
RUN npm install
COPY package*.json tsconfig*.json nx.json babel.config.json ./
RUN npm ci
COPY packages/ ./packages/
RUN npm run build:fib-service

Expand Down