Compare commits

..

No commits in common. "ec2a1999ee2cbaaf021695cc5be5c76dabab6bcc" and "2174e37c6afc0873a7d26c3d2be6b36d608dff42" have entirely different histories.

2 changed files with 0 additions and 24 deletions

View file

@ -1,13 +0,0 @@
FROM node:22
WORKDIR /app
COPY yarn.lock package.json ./
RUN yarn install
COPY . .
EXPOSE 5173
CMD ["yarn", "dev", "--host", "0.0.0.0"]

View file

@ -1,11 +0,0 @@
version: "3.5"
services:
k5web:
build: .
container_name: k5web
network_mode: "bridge"
ports:
- "5173:5173"
environment:
- TZ=Asia/Shanghai
restart: always