Remove yarn from project

This commit is contained in:
Alf Sebastian Houge
2023-01-31 21:53:53 +01:00
parent 440913af9c
commit fc9796081e
4 changed files with 781 additions and 42178 deletions

View File

@@ -6,10 +6,9 @@ WORKDIR /app
# Copy dependency-related files
COPY package.json ./
COPY yarn.lock ./
# Install project dependencies
RUN yarn install
RUN npm install
# Expose ports 8080, which the dev server will be bound to
EXPOSE 8080