mirror of
https://github.com/acid-info/logos-ordinals-dashboard.git
synced 2025-01-11 14:14:31 +00:00
18 lines
215 B
Docker
18 lines
215 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Listening port
|
|
ARG PORT=3000
|
|
EXPOSE ${PORT}
|
|
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
COPY . .
|
|
|
|
RUN yarn install --production
|
|
RUN yarn build
|
|
|
|
CMD ["yarn", "start"]
|