summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJonas Zohren <gitlab-jfowl-0ux98@sh14.de>2021-12-15 10:14:20 +0000
committerTimo Kösters <timo@koesters.xyz>2021-12-15 10:14:20 +0000
commit339a26f56c84da242d753a1894589f5923b0fd7e (patch)
tree146a31b1b864ff3ad649112811a6ae9373da2be1 /Dockerfile
parentca724b634035019b97b8b1c07e3011aafe88de7f (diff)
downloadconduit-339a26f56c84da242d753a1894589f5923b0fd7e.zip
Update docker images
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 6a9ea73..5812fdf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -32,7 +32,7 @@ RUN touch src/main.rs && touch src/lib.rs && cargo build --release
# ---------------------------------------------------------------------------------------------------------------
# Stuff below this line actually ends up in the resulting docker image
# ---------------------------------------------------------------------------------------------------------------
-FROM docker.io/alpine:3.14 AS runner
+FROM docker.io/alpine:3.15.0 AS runner
# Standard port on which Conduit launches.
# You still need to map the port when using the docker command or docker-compose.
@@ -45,9 +45,8 @@ ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml"
# ca-certificates: for https
# libgcc: Apparently this is needed, even if I (@jfowl) don't know exactly why. But whatever, it's not that big.
RUN apk add --no-cache \
- ca-certificates \
- curl \
- libgcc
+ ca-certificates \
+ libgcc
# Created directory for the database and media files