1
Fork 0
This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
astro-authorizer-template/Dockerfile
2024-04-03 21:49:17 -04:00

12 lines
No EOL
159 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=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs