Files
Memento/Dockerfile
2026-01-12 17:54:13 +13:00

15 lines
240 B
Docker

FROM node:lts AS runtime
WORKDIR /app
COPY . .
ENV ASTRO_DB_REMOTE_URL=libsql
RUN npm install
RUN npx astro db push --remote
RUN npx astro build --remote
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]