mirror of
https://github.com/acid-info/logos-press-engine.git
synced 2025-02-22 06:08:15 +00:00
21 lines
234 B
Docker
21 lines
234 B
Docker
FROM node:18.13.0-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
ENV PORT 3000
|
|
ENV NODE_ENV production
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
EXPOSE ${PORT}
|
|
|
|
COPY yarn.lock .
|
|
COPY package.json .
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
|
|
CMD yarn start
|