Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 6 commits into from
Oct 20, 2024
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
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
Loading