Initial commit: svg frontend
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
ARG VITE_FRONTEND_PORT=28080
|
||||
ENV VITE_FRONTEND_PORT=${VITE_FRONTEND_PORT}
|
||||
|
||||
EXPOSE 28080
|
||||
|
||||
CMD ["sh", "-c", "npm run dev"]
|
||||
Reference in New Issue
Block a user