Docker: Upgrade Ubuntu base image from 21.04 to 21.10 #1632
This commit is contained in:
parent
dc128e0768
commit
3417539218
3 changed files with 5 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:21.04
|
||||
FROM ubuntu:21.10
|
||||
|
||||
LABEL maintainer="Michael Mayer <hello@photoprism.org>"
|
||||
|
||||
|
|
|
@ -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>"
|
||||
|
||||
|
|
Loading…
Reference in a new issue