Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
chore: use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
trowik committed Dec 27, 2022
1 parent 374efe4 commit 04d1ea7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM danlynn/ember-cli:latest as build

COPY package.json yarn.lock /myapp/
COPY package.json pnpm-lock.yaml /myapp/

RUN yarn install
RUN npm install -g pnpm
RUN pnpm install

COPY . /myapp/

RUN yarn build --environment=production
RUN pnpm run build --environment=production

FROM nginx:alpine

Expand Down

0 comments on commit 04d1ea7

Please sign in to comment.