mirror of
https://github.com/logos-messaging/logos-messaging-frontend.git
synced 2026-01-02 13:53:13 +00:00
9 lines
146 B
Docker
9 lines
146 B
Docker
FROM node:18
|
|
WORKDIR /app
|
|
RUN npm i -g serve
|
|
RUN mkdir -p ./_next
|
|
COPY ./out/* ./
|
|
COPY ./out/_next ./_next
|
|
EXPOSE 3000
|
|
CMD ["npx", "serve", "./"]
|