Oops, 1.19-stretch doesn't exist; use bullseye

Turns out stretch is actually pretty outdated
This commit is contained in:
0x1a8510f2 2022-09-12 15:09:13 +01:00
parent 377af5d877
commit 9b2b8cba6e
No known key found for this signature in database
GPG key ID: 1C692E355D76775D
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.2
FROM golang:1.19-stretch as build
FROM golang:1.19-bullseye as build
RUN apt-get update && apt-get install -y sqlite3
WORKDIR /build

View file

@ -8,7 +8,7 @@
#
# Use these mounts to make use of this dockerfile:
# COMPLEMENT_HOST_MOUNTS='/your/local/dendrite:/dendrite:ro;/your/go/path:/go:ro'
FROM golang:1.19-stretch
FROM golang:1.19-bullseye
RUN apt-get update && apt-get install -y sqlite3
ENV SERVER_NAME=localhost

View file

@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.2
FROM golang:1.19-stretch as build
FROM golang:1.19-bullseye as build
RUN apt-get update && apt-get install -y postgresql
WORKDIR /build

View file

@ -49,7 +49,7 @@ const HEAD = "HEAD"
// due to the error:
// When using COPY with more than one source file, the destination must be a directory and end with a /
// We need to run a postgres anyway, so use the dockerfile associated with Complement instead.
const Dockerfile = `FROM golang:1.19-stretch as build
const Dockerfile = `FROM golang:1.19-bullseye as build
RUN apt-get update && apt-get install -y postgresql
WORKDIR /build