From c36b4a5ba501d1181abc98f742dceb1a22cb2be6 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Thu, 20 Jan 2022 15:26:32 +0100 Subject: [PATCH] Specify Fastify workdir --- Fastify/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Fastify/Dockerfile b/Fastify/Dockerfile index 30f47cb..0b0684c 100644 --- a/Fastify/Dockerfile +++ b/Fastify/Dockerfile @@ -1,7 +1,9 @@ FROM node:17-alpine +WORKDIR /app + +COPY ./ /app + RUN npm install fastify -COPY . . - CMD ["node", "server.js"] \ No newline at end of file