Docker: Upgrade Ubuntu base image from 21.04 to 21.10 #1632

This commit is contained in:
Michael Mayer 2021-10-21 16:53:04 +02:00
parent dc128e0768
commit 3417539218
3 changed files with 5 additions and 5 deletions

View file

@ -195,9 +195,9 @@ clean:
rm -rf frontend/node_modules
docker-development:
scripts/install-qemu.sh
docker pull --platform=amd64 ubuntu:21.04
docker pull --platform=arm64 ubuntu:21.04
docker pull --platform=arm ubuntu:21.04
docker pull --platform=amd64 ubuntu:21.10
docker pull --platform=arm64 ubuntu:21.10
docker pull --platform=arm ubuntu:21.10
scripts/docker-buildx.sh development linux/amd64,linux/arm64,linux/arm $(DOCKER_TAG)
docker-preview:
scripts/docker-buildx.sh photoprism linux/amd64,linux/arm64,linux/arm

View file

@ -1,4 +1,4 @@
FROM ubuntu:21.04
FROM ubuntu:21.10
LABEL maintainer="Michael Mayer <hello@photoprism.org>"

View file

@ -12,7 +12,7 @@ COPY . .
RUN make dep build-js install
# Should be the same as used for photoprism/development!
FROM ubuntu:21.04
FROM ubuntu:21.10
LABEL maintainer="Michael Mayer <hello@photoprism.org>"