From 8ee9c83fedf806e89433ea3ece9421f26ca54d35 Mon Sep 17 00:00:00 2001 From: Mari Date: Sat, 4 May 2024 00:11:27 -0700 Subject: [PATCH] Fix Dockerfile, but again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9234637..ce0c176 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:latest AS build RUN apt-get update && apt-get install -y --no-install-recommends dumb-init WORKDIR /usr/src/app -COPY src /usr/src/app/ +COPY src /usr/src/app/src/ COPY package*.json /usr/src/app/ RUN npm ci RUN npm run lint