landing-page/Dockerfile

13 lines
160 B
Docker

FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=4343
EXPOSE 4343
CMD node ./dist/server/entry.mjs