Skip to content

Commit

Permalink
change: back to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
domysh committed Oct 12, 2023
1 parent c044383 commit 13a8711
Show file tree
Hide file tree
Showing 5 changed files with 4,343 additions and 2,649 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM node:18 AS frontend
RUN mkdir /app
WORKDIR /app
ADD ./frontend/package.json .
ADD ./frontend/yarn.lock .
RUN yarn install --network-timeout 300000
ADD ./frontend/package-lock.json .
RUN npm ci
COPY ./frontend/ .
RUN yarn build
RUN npm run build


#Building main conteiner
Expand Down
Loading

0 comments on commit 13a8711

Please sign in to comment.