Fix Dockerfile

This commit is contained in:
Liam 2022-10-29 16:01:00 +01:00
parent ae621cae3f
commit 73b6f4795b

@ -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; \