Files
Homarr/Dockerfile

15 lines
416 B
Docker
Raw Normal View History

2022-05-12 19:43:04 -04:00
FROM node:16-alpine
WORKDIR /app
ENV NODE_ENV production
COPY /next.config.js ./
COPY /public ./public
2022-05-12 19:43:04 -04:00
COPY /package.json ./package.json
# Automatically leverage output traces to reduce image size. https://nextjs.org/docs/advanced-features/output-file-tracing
COPY /.next/standalone ./
COPY /.next/static ./.next/static
2022-05-12 19:43:04 -04:00
EXPOSE 7575
ENV PORT 7575
2022-06-07 11:19:53 -04:00
RUN apk add tzdata
2022-05-12 19:43:04 -04:00
VOLUME /app/data/configs
CMD ["node", "server.js"]