mirror of
https://github.com/logos-messaging/rln.waku.org.git
synced 2026-01-02 06:03:09 +00:00
18 lines
208 B
Docker
18 lines
208 B
Docker
FROM node:22.14-alpine3.21
|
|
|
|
WORKDIR /app
|
|
|
|
# Listening port
|
|
ARG PORT=3000
|
|
EXPOSE ${PORT}
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
COPY . .
|
|
|
|
RUN yarn install \
|
|
&& yarn cache clean
|
|
RUN yarn build
|
|
|
|
CMD ["yarn", "start"]
|