Skip to content

Commit

Permalink
Add missing yarn lock for dev, and set env
Browse files Browse the repository at this point in the history
  • Loading branch information
dsgnr committed Nov 22, 2024
1 parent 3236640 commit 5ee7a07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM node:23-alpine3.19
FROM node:23-alpine3.19
ENV PATH=$PATH:$PWD/node_modules/.bin

# ALlows the user to define a default port to populate the UI.
# Pass a desired value in your docker run/compose environment
ARG DEFAULT_PORT
ENV DEFAULT_PORT=$DEFAULT_PORT

COPY web/package.json ./
COPY web/package.json web/yarn.lock ./
RUN yarn install
COPY ./web ./web
WORKDIR /web
Expand Down

0 comments on commit 5ee7a07

Please sign in to comment.