From 73b6f4795b3d24c9a3a0fa50c941036decbb65dd Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Sat, 29 Oct 2022 16:01:00 +0100 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9d56b7..a4f4207 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM node:18-alpine AS deps RUN apk add libc6-compat WORKDIR /app -# # Install dependencies based on the preferred package manager -# COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ +# Install dependencies based on the preferred package manager +COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ # RUN \ # if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ # elif [ -f package-lock.json ]; then npm ci; \