Files
nuxt4-example/Dockerfile
2025-09-08 11:58:56 +00:00

13 lines
218 B
Docker

FROM node:20-alpine
WORKDIR /usr/src/app
RUN apk add --no-cache git bash
COPY entrypoint.sh /usr/src/app/entrypoint.sh
RUN chmod +x /usr/src/app/entrypoint.sh
EXPOSE 3000
ENTRYPOINT ["/usr/src/app/entrypoint.sh"]