From 2e114fef44d527b6b35f14cfb52323f422352876 Mon Sep 17 00:00:00 2001 From: calm-steam Date: Tue, 18 Feb 2025 23:54:47 +0530 Subject: [PATCH] change variable name --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 114b0db..48320be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM python:3.10-alpine -ARG game_server_directory="/usr/src/GameServerSupervisor" +ARG supervisor_dir="/usr/src/GameServerSupervisor" -RUN mkdir -p $game_server_directory +RUN mkdir -p $supervisor_dir -WORKDIR $game_server_directory +WORKDIR $supervisor_dir -COPY . $game_server_directory +COPY . $supervisor_dir RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt