shillerben-nuxt/Dockerfile

7 lines
108 B
Docker
Raw Permalink Normal View History

2023-08-27 14:48:58 +00:00
FROM node:18-alpine
EXPOSE 3000
WORKDIR /app
COPY .output .
ENTRYPOINT [ "node", "/app/server/index.mjs" ]