mirror of
https://github.com/mvvasilev/personal-finances.git
synced 2025-04-18 21:59:52 +03:00
11 lines
No EOL
209 B
Docker
11 lines
No EOL
209 B
Docker
# 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"] |