mirror of
https://github.com/mvvasilev/personal-finances.git
synced 2025-04-19 22:29:53 +03:00
11 lines
209 B
Text
11 lines
209 B
Text
|
# This dockerfile is intended for development use only
|
||
|
|
||
|
FROM node:21 as nodebuilder
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn install --prefer-offline --frozen-lockfile --non-interactive
|
||
|
|
||
|
CMD ["yarn", "dev", "--host"]
|