Skip to content

Commit

Permalink
chore: bump runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
SebassNoob committed May 4, 2024
1 parent bc78f03 commit 8d6a7e3
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.3
bun-version: 1.1.7

- name: Install dependencies (backend)
run: cd interapp-backend && bun install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.3
bun-version: 1.1.7

- name: Install dependencies
run: cd interapp-backend && bun install
Expand Down
2 changes: 1 addition & 1 deletion interapp-backend/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.1.3
FROM oven/bun:1.1.7
WORKDIR /app

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion interapp-backend/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.1.3
FROM oven/bun:1.1.7
WORKDIR /app

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion interapp-backend/scheduler/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.1.3
FROM oven/bun:1.1.7
WORKDIR /app

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion interapp-backend/scheduler/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.1.3
FROM oven/bun:1.1.7
WORKDIR /app

COPY . .
Expand Down
2 changes: 1 addition & 1 deletion interapp-backend/tests/config/test.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.1.3
FROM oven/bun:1.1.7
WORKDIR /app

COPY . .
Expand Down
22 changes: 11 additions & 11 deletions interapp-frontend/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20-alpine
WORKDIR /app

COPY . .

ENV NODE_ENV development
ENV WATCHPACK_POLLING true
RUN npm install --frozen-lockfile


EXPOSE 3000
FROM node:22-alpine
WORKDIR /app

COPY . .

ENV NODE_ENV development
ENV WATCHPACK_POLLING true
RUN npm install --frozen-lockfile


EXPOSE 3000
CMD ["npm", "run", "dev"]
2 changes: 1 addition & 1 deletion interapp-frontend/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:22-alpine
WORKDIR /app

COPY . .
Expand Down

0 comments on commit 8d6a7e3

Please sign in to comment.