From 912e20399f40cbce497abfa41c56f878f012df8a Mon Sep 17 00:00:00 2001 From: Mitchell Marino Date: Wed, 12 Apr 2023 21:51:50 -0500 Subject: [PATCH] update dockerfile to use the buster-slim version of rust to build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fdeb70e..901ee96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:latest as build +FROM rust:slim-buster as build ENV DATABASE_URL="postgres://school_app_api_user:school_app_api_pass@mdev.local/school_app_api" WORKDIR /usr/src/school_app_api