fix: update base image version in Dockerfile and remove cron installation

This commit is contained in:
Arunavo Ray
2025-05-23 16:07:42 +05:30
parent 7d32112369
commit fc985f29df

View File

@@ -1,8 +1,8 @@
# syntax=docker/dockerfile:1.4
FROM oven/bun:1.2.9-alpine AS base
FROM oven/bun:1.2.14-alpine AS base
WORKDIR /app
RUN apk add --no-cache libc6-compat python3 make g++ gcc wget sqlite openssl cron
RUN apk add --no-cache libc6-compat python3 make g++ gcc wget sqlite openssl
# ----------------------------
FROM base AS deps