Added few dependencies to Dockerfile
This commit is contained in:
parent
39359b511d
commit
5d3e6d9498
|
|
@ -4,6 +4,9 @@ FROM node:22
|
|||
# Set working directory inside container
|
||||
WORKDIR /app
|
||||
|
||||
# Adding Quasar
|
||||
RUN yarn global add @quasar/cli
|
||||
|
||||
# Set environment variables
|
||||
ENV VITE_TARGO_BACKEND_URL="http://targo-backend:3000"
|
||||
|
||||
|
|
@ -13,6 +16,11 @@ COPY . .
|
|||
# Install dependencies
|
||||
RUN npm install
|
||||
|
||||
# Linting and formating
|
||||
RUN yarn
|
||||
RUN yarn lint
|
||||
RUN yarn format
|
||||
|
||||
# Expose Quasar dev port
|
||||
EXPOSE 9000
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user