From f05a35965ea172497295219aab91091a208e979a Mon Sep 17 00:00:00 2001 From: thedrewen Date: Fri, 31 Oct 2025 17:36:16 +0100 Subject: [PATCH] chore(docker): add WORKDIR instruction to set application directory --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5584f1f..ba14e02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM node:22 +WORKDIR /app + COPY . . RUN apt-get update && apt-get install -y iputils-ping