From 2c4cb5aced1e08299394d65e9e4f570a898500f7 Mon Sep 17 00:00:00 2001 From: Devin Kelley <105753233+devkelley@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:17:40 -0700 Subject: [PATCH] Simplified APP_NAME declaration --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26d1e20..40bbf0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,8 @@ # Create a stage for building the application. ARG RUST_VERSION=1.72.1 -ARG APP_NAME=pub-sub-service FROM rust:${RUST_VERSION}-slim-bullseye AS build -ARG APP_NAME +ARG APP_NAME=pub-sub-service WORKDIR /app COPY ./ .