Update Docker image to Alpine 3.18

Closes #215
This commit is contained in:
Tulir Asokan 2023-06-26 13:27:30 +03:00
parent b4e8e5bfbb
commit 36829e7d0d
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ FROM node:18 AS frontend-builder
COPY ./maubot/management/frontend /frontend
RUN cd /frontend && yarn --prod && yarn build
FROM alpine:3.17
FROM alpine:3.18
RUN apk add --no-cache \
python3 py3-pip py3-setuptools py3-wheel \

View file

@ -1,4 +1,4 @@
FROM alpine:3.17
FROM alpine:3.18
RUN apk add --no-cache \
python3 py3-pip py3-setuptools py3-wheel \