summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJonas Platte <jplatte+git@posteo.de>2022-01-20 12:29:24 +0100
committerJonas Platte <jplatte+git@posteo.de>2022-01-20 12:29:24 +0100
commit5afb27a5a9ae887dea042e3ca9f0ecef98feff47 (patch)
tree64917f8814350bff5ed1e76f9cf1ddf3df894e27 /Dockerfile
parent6e322716caf6f9181bf21444b552bf05d5f5a774 (diff)
downloadconduit-5afb27a5a9ae887dea042e3ca9f0ecef98feff47.zip
Use latest stable for Docker image
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 5812fdf..b629690 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
-FROM docker.io/rust:1.53-alpine AS builder
+FROM docker.io/rust:1.58-alpine AS builder
WORKDIR /usr/src/conduit
# Install required packages to build Conduit and it's dependencies
@@ -38,7 +38,7 @@ FROM docker.io/alpine:3.15.0 AS runner
# You still need to map the port when using the docker command or docker-compose.
EXPOSE 6167
-# Note from @jfowl: I would like to remove this in the future and just have the Docker version be configured with envs.
+# Note from @jfowl: I would like to remove this in the future and just have the Docker version be configured with envs.
ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml"
# Conduit needs:
@@ -78,4 +78,4 @@ WORKDIR /srv/conduit
# Run Conduit and print backtraces on panics
ENV RUST_BACKTRACE=1
-ENTRYPOINT [ "/srv/conduit/conduit" ] \ No newline at end of file
+ENTRYPOINT [ "/srv/conduit/conduit" ]