mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
9 lines
184 B
Docker
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"]
|