Skip to content

Commit

Permalink
chore(deps): bump the docker group across 1 directory with 2 updates (#…
Browse files Browse the repository at this point in the history
…624)

* chore(deps): bump the docker group across 1 directory with 2 updates

Bumps the docker group with 2 updates in the / directory: python and node.


Updates `python` from 3.12.7 to 3.13.0

Updates `node` from 22 to 23

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <[email protected]>

* Updates

* chore(deps): bump the docker group across 1 directory with 2 updates

Bumps the docker group with 2 updates in the / directory: python and node.


Updates `python` from 3.12.7 to 3.13.0

Updates `node` from 22 to 23

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <[email protected]>

* Updates

* fix legacy warnings

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shubham Hibare <[email protected]>
  • Loading branch information
dependabot[bot] and hibare authored Oct 20, 2024
1 parent 9ad28f4 commit 86a6cbe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.12.7-slim as base
FROM python:3.13.0-slim AS base

LABEL Github="hibare"

# Build frontend assets

FROM node:22 as frontend
FROM node:23 AS frontend

ENV NODE_OPTIONS=--openssl-legacy-provider

Expand All @@ -22,11 +22,11 @@ RUN npm run build

# Build backend deps

FROM base as builder
FROM base AS builder

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONDONTWRITEBYTECODE=1

ENV PYTHONUNBUFFERED 1
ENV PYTHONUNBUFFERED=1

RUN apt-get update && apt-get install -y build-essential python3-dev libpq-dev libssl-dev libffi-dev rustc

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.dev.api
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.12.7 as base
FROM python:3.13.0 as base

LABEL Github="hibare"

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONDONTWRITEBYTECODE=1

ENV PYTHONUNBUFFERED 1
ENV PYTHONUNBUFFERED=1

RUN apt-get update && apt-get install -y build-essential python3-dev libpq-dev libssl-dev libffi-dev rustc

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev.ui
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22 as frontend
FROM node:23 as frontend

ENV NODE_OPTIONS=--openssl-legacy-provider

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ api-py-shell: ## Open python shell in API container
api-shell: ## Open shell in API container
${DOCKER_COMPOSE_PREFIX} exec api bash

.PHONY: build-api
build-api: ## Build API
.PHONY: build-dev-api
build-dev-api: ## Build Dev API
${DOCKER_COMPOSE_PREFIX} build --no-cache api

.PHONY: build-ui
build-ui: ## Build UI
.PHONY: build-dev-ui
build-dev-ui: ## Build Dev UI
${DOCKER_COMPOSE_PREFIX} build --no-cache ui

.PHONY: ui-up
Expand Down

0 comments on commit 86a6cbe

Please sign in to comment.