From 958384af159e83b7a9a0993ec7c1b02117e29845 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Sun, 15 Oct 2023 20:39:14 +0100 Subject: [PATCH] Trying more things --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b700d57..347c2c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,9 @@ FROM node:18-alpine AS build RUN apk add --no-cache libc6-compat RUN mkdir /app -COPY package.json /app +COPY ./* /app WORKDIR /app -COPY . /app - RUN yarn RUN yarn build