docker: try to reduce image size

This commit is contained in:
Herculino Trotta
2024-10-25 15:49:29 -03:00
parent d2be0be72d
commit 0b75b4f5e9

View File

@@ -1,4 +1,4 @@
FROM python:3.11.8-slim-buster AS python-build-stage
FROM python:3.11-slim-buster AS python-build-stage
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
@@ -18,7 +18,7 @@ RUN npm config set registry https://registry.npmmirror.com/ && \
npm run build && \
npm cache clean --force
FROM python:3.11.8-slim-buster AS python-run-stage
FROM python:3.11-slim-buster AS python-run-stage
COPY --from=webpack_build /usr/src/frontend/build /usr/src/frontend/build
WORKDIR /usr/src/app