From 00e7dfb41c318eafbae04c6d5978b127f0fe8252 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Thu, 4 Jan 2024 20:17:50 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=8B=20dockerfile=20to=20latest?= =?UTF-8?q?=20instead=20of=20alpine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 066bc34cd..a157c66e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM oven/bun:alpine as build +FROM oven/bun:latest as build WORKDIR /app @@ -32,4 +32,4 @@ RUN pip3 install -r requirements.txt COPY ./backend . -CMD [ "sh", "start.sh"] \ No newline at end of file +CMD [ "sh", "start.sh"]