28 lines
411 B
Docker
28 lines
411 B
Docker
# targo-frontend
|
|
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"
|
|
|
|
# Copy the code
|
|
COPY . .
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
# Linting and formating
|
|
RUN yarn
|
|
RUN yarn lint
|
|
|
|
# Expose Quasar dev port
|
|
EXPOSE 9000
|
|
|
|
# Default command
|
|
CMD ["quasar", "dev"]
|