12 lines
191 B
Docker
12 lines
191 B
Docker
|
|
FROM node:20-slim AS build
|
|
WORKDIR /app
|
|
|
|
# Copy the entire project
|
|
COPY .output ./.output
|
|
|
|
# Change the port and host
|
|
ENV PORT=3000
|
|
ENV HOST=0.0.0.0
|
|
|
|
CMD ["node", ".output/server/index.mjs"] |