Files
nuxt4-example/Dockerfile
2025-09-09 18:20:52 +00:00

15 lines
200 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
COPY entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
EXPOSE 3000
CMD ["sh", "/app/entrypoint.sh"]