townsquare/Dockerfile
Pingumask 67ff3ddf6a Upgrade node to 22, bundle with vite
Updated docker compose for --watch usage
2024-12-09 22:26:20 +01:00

9 lines
184 B
Docker

FROM node:22
RUN apt update && apt install -y\
git\
&& apt clean
WORKDIR /app/townsquare
COPY . .
RUN npm rebuild && npm clean-install
EXPOSE 5173 8079
CMD ["npm","run","dev"]