Merge pull request 'fix: remove unused Deno from backend Dockerfile' (#46) from fix/remove-deno into main

Reviewed-on: https://git.home.ms/jarianc/lofi-app/pulls/46
This commit is contained in:
jarianc 2026-07-04 23:56:43 -05:00
commit 3ce40744cd

View File

@ -1,7 +1,6 @@
FROM python:3.12-slim AS builder
RUN apt-get update && apt-get install -y --no-install-recommends curl unzip \
&& curl -fsSL https://deno.land/install.sh | sh \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build
@ -44,9 +43,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /app
COPY src/ ./src/
ENV DENO_INSTALL="/root/.deno"
ENV PATH="${DENO_INSTALL}/bin:${PATH}"
ENV PLAYWRIGHT_BROWSERS_PATH=/app/.cache/ms-playwright
RUN chown -R appuser:appuser /app