summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar 0hlov3 <0hlov3@protonmail.com>2022-02-27 12:53:30 +0100
committerLibravatar GitHub <noreply@github.com>2022-02-27 12:53:30 +0100
commit64d9a34c65ac706f5e7f3b1e2409c3a057700c3d (patch)
tree863e3051654f3aebb33c23301418036eb5b4f03b
parent[feature] Add Docker multi architecture Build and make goreleaser push the im... (diff)
downloadgotosocial-64d9a34c65ac706f5e7f3b1e2409c3a057700c3d.tar.xz
Updates Docker Images (#415)
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 5281ef667..b069b9830 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# bundle the admin webapp
-FROM node:16.9.0-alpine3.14 AS admin_builder
+FROM node:17.6.0-alpine3.15 AS admin_builder
RUN apk update && apk upgrade --no-cache
RUN apk add git
@@ -9,7 +9,7 @@ WORKDIR /gotosocial-admin
RUN npm install
RUN node index.js
-FROM alpine:3.14.2 AS executor
+FROM alpine:3.15.0 AS executor
RUN apk update && apk upgrade --no-cache
# copy over the binary from the first stage