update dockerfile

This commit is contained in:
Andy Pack 2023-08-08 17:56:49 +01:00
parent 077b8ea4e6
commit 99dc270b13
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -1,4 +1,4 @@
FROM node:19-alpine AS js-build
FROM node:20-alpine AS js-build
RUN npm install -g sass
@ -14,7 +14,7 @@ RUN npm ci
RUN npm run build --if-present
RUN sass src/scss/style.scss build/style.css
FROM python:3.10-slim as py
FROM python:3.11-slim as py
RUN pip install poetry
RUN poetry config virtualenvs.create false