From 0d71fb376c045c706e663285b893e0c103145e57 Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Thu, 12 Sep 2024 00:03:01 -0400 Subject: [PATCH] feat: added chmod for script, volume instruction, and basic program installation --- dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dockerfile b/dockerfile index 1825273..24efe2a 100644 --- a/dockerfile +++ b/dockerfile @@ -1,10 +1,20 @@ FROM debian +ENV ENV_1="" + WORKDIR /PROJECT_NAME +RUN apt update && \ + apt full-upgrade -y && \ + apt install -y vim + RUN mkdir appdata +VOLUME /PROJECT_NAME/appdata + COPY entrypoint.sh . +RUN chmod +x entrypoint.sh + CMD["./entrypoint.sh"]