Files
Homarr/Dockerfile

29 lines
563 B
Docker
Raw Normal View History

2022-05-12 19:43:04 -04:00
FROM node:16-alpine
WORKDIR /app
RUN apk add tzdata
ENV NEXT_TELEMETRY_DISABLED 1
2022-05-12 19:43:04 -04:00
ENV NODE_ENV production
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
COPY next.config.js ./
COPY public ./public
COPY package.json ./package.json
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --chown=nextjs:nodejs .next/standalone ./
COPY --chown=nextjs:nodejs .next/static ./.next/static
USER nextjs
2022-05-12 19:43:04 -04:00
EXPOSE 7575
2022-05-12 19:43:04 -04:00
ENV PORT 7575
CMD ["node", "server.js"]