diff options
| author | 2021-09-11 16:21:24 +0200 | |
|---|---|---|
| committer | 2021-09-11 16:21:24 +0200 | |
| commit | 5b69792607d93322df3a9cd9b0a11af0f8e9d7fd (patch) | |
| tree | b8a522594e5fe67e6611012b248fa76f68db8673 /Dockerfile | |
| parent | only store statuses in the AS cache, not accounts (#210) (diff) | |
| download | gotosocial-5b69792607d93322df3a9cd9b0a11af0f8e9d7fd.tar.xz | |
update container versions
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index cb5308c4d..c38f2a610 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # STEP ONE: build the GoToSocial binary -FROM golang:1.17.1-alpine3.13 AS binary_builder +FROM golang:1.17.1-alpine3.14 AS binary_builder RUN apk update && apk upgrade --no-cache RUN apk add git @@ -29,7 +29,7 @@ ADD scripts/build.sh /go/src/github.com/superseriousbusiness/gotosocial/build.sh RUN ./build.sh # STEP TWO: build the web assets -FROM node:16.5.0-alpine3.11 AS web_builder +FROM node:16.9.0-alpine3.14 AS web_builder RUN apk update && apk upgrade --no-cache COPY web /web @@ -39,7 +39,7 @@ RUN yarn install RUN node build.js # STEP THREE: bundle the admin webapp -FROM node:16.5.0-alpine3.11 AS admin_builder +FROM node:16.9.0-alpine3.14 AS admin_builder RUN apk update && apk upgrade --no-cache RUN apk add git @@ -50,7 +50,7 @@ RUN npm install RUN node index.js # STEP FOUR: build the final container -FROM alpine:3.13 AS executor +FROM alpine:3.14.2 AS executor RUN apk update && apk upgrade --no-cache # copy over the binary from the first stage |
